#Consider quantitative data (i.e. QuantData) from yeast study with ten time points of interests, three biological replicates, and no technical replicates.
#It is a time-course experiment and we attempt to compare differential abundance between time 1 and 7 in a set of targeted proteins.
#In this label-based SRM experiment, MSstats uses the fitted model with expanded scope of Biological replication.
QuantData<-dataProcess(SRMRawData)
head(QuantData$ProcessedData)
levels(QuantData$ProcessedData$GROUP_ORIGINAL)
comparison<-matrix(c(-1,0,0,0,0,0,1,0,0,0),nrow=1)
row.names(comparison)<-"T7-T1"
# Tests for differentially abundant proteins with models:
# label-based SRM experiment with expanded scope of biological replication.
testResultOneComparison<-groupComparison(contrast.matrix=comparison, data=QuantData)
# table for result
testResultOneComparison$ComparisonResult
Run the code above in your browser using DataLab