This vignette introduces all the functionalities and summarizes their options in MSstatsSampleSize. MSstatsSampleSize requires protein abundances quantified in mass spectrometry runs as a matrix (columns for biological replicates (samples) and rows for proteins) and annotation including biological replicates (samples) and their condition (such as a disease and time points). MSstatsSampleSize includes the following functionalities:
estimateVar
: estimates the variance across biological replicates and MS run for each protein.simulateDataset
: simulates data with the given number(s) of biological replicates based on the variance estimation.designSampleSizeClassification
: fit the classification model (five classifier are provided) on each simulation and reports the mean predictive accuracy of the classifier and mean protein importance over multiple iterations of the simulation. The sample size per condition, which generates the largest predictive accuracy, is estimated, while varying the number of biological replicates to simulate. Also, the proteins, which can classify the conditions best, are reported. The reported sample size per condition can be used to design future experiments.In addition, MSstatsTMT includes the following visualization plots for sample size estimation:
meanSDplot
: draw the plot for the mean protein abundance vs standard deviation in each condition for the input preliminary dataset. It can exhibit the quality of input data.designSampleSizePCAplot
: make PCA plots for the simulated data with certain sample size.designSampleSizeHypothesisTestingPlot
: visualize sample size calculation in hypothesis testing, which estimates the minimal required number of replicates under different expected fold changes.designSampleSizeClassificationPlots
: visualize sample size calculation in classification, including predictive accuracy plot and protein importance plot for different sample sizes.The function fits intensity-based linear model on the prelimiary data (Input, here is data
). This function outputs variance components and mean abundance for each protein.
data
: Data matrix with protein abundance. Rows are proteins and columns are Biological replicates or samples.annotation
: annotation Group information for samples in data. BioReplicate
for sample ID and Condition
for group information are required. BioReplicate
information should be the same with the column of data
.# # read in protein abundance sheet
# # The CSV sheet has 173 columns from control and cancer groups.
# # Each row is protein and each column (except the first column) is biological replicate.
# # The first column 'Protein' contains the protein names.
# OV_SRM_train <- read.csv(file = "OV_SRM_train.csv")
# # assign the column 'Protein' as row names
# rownames(OV_SRM_train) <- OV_SRM_train$Protein
# # remove the column 'Protein
# OV_SRM_train <- OV_SRM_train[, colnames(OV_SRM_train)!="Protein"]
head(OV_SRM_train)
#> 111_data2 112_data2 114_data2 115_data2 117_data2 118_data2 119_data2
#> AFM 18.125305 18.64349 17.786586 18.62598 18.097136 18.535312 18.840662
#> AHSG 19.128721 19.11689 19.286422 19.55758 19.344060 19.639931 19.959407
#> AIAG 14.622719 14.67904 14.573159 14.63815 14.721183 14.680685 14.689130
#> AOC3 9.632189 10.11125 9.206763 10.16800 9.684437 9.231637 9.119823
#> APOH 17.426479 17.43132 17.075589 17.56990 17.487654 17.387798 16.742562
#> ATRN 15.686383 15.87728 15.363577 15.94339 15.797377 15.895453 15.656975
#> 120_data2 121_data2 122_data2 124_data2 125_data2 126_data2 127_data2
#> AFM 18.03126 18.30078 18.174929 17.96232 17.689686 18.901496 18.575908
#> AHSG 19.15174 19.60217 19.874469 19.04089 19.501971 19.731607 19.584103
#> AIAG 14.68560 14.66908 14.698554 14.65223 14.665577 14.780582 14.619267
#> AOC3 9.81001 9.76118 9.601232 10.43671 8.985737 9.875627 9.334184
#> APOH 17.51288 17.79438 17.232558 17.65325 17.224110 17.785863 17.659559
#> ATRN 15.36520 15.95020 15.625773 15.68939 15.753342 16.270773 15.831303
#> 128_data2 129_data2 130_data2 131_data2 132_data2 133_data2 134_data2
#> AFM 17.947816 18.147868 18.51270 18.65929 18.47320 17.88667 18.507657
#> AHSG 18.841300 19.523012 18.84247 19.63918 19.42743 19.57734 19.659681
#> AIAG 14.644087 14.667445 14.63945 14.64111 14.56605 14.61757 14.618578
#> AOC3 9.223909 9.437629 10.33851 10.09512 10.42163 9.98921 9.644337
#> APOH 16.273186 17.621464 17.51718 17.70859 17.60183 17.39107 17.716885
#> ATRN 15.373676 15.687543 15.80440 16.15178 16.03244 15.22396 15.908807
#> 135_data2 136_data2 137_data2 138_data2 139_data2 141_data2 142_data2
#> AFM 18.056045 18.217216 18.190407 17.93129 18.190767 18.71189 18.697504
#> AHSG 18.684113 19.778128 19.072510 19.64681 19.144389 19.09215 19.173120
#> AIAG 14.788843 14.700861 14.690739 14.70032 14.557284 14.49786 14.527640
#> AOC3 9.883479 9.956687 9.923819 10.19981 9.584612 10.08803 9.856426
#> APOH 17.486721 17.634729 17.326886 17.87975 17.269722 17.51544 17.439385
#> ATRN 15.550850 15.945612 15.683677 15.46693 15.755415 15.83076 15.837718
#> 143_data2 144_data2 145_data2 148_data2 150_data2 152_data2 153_data2
#> AFM 18.333930 18.74509 18.883271 18.42733 18.238043 18.95043 17.924042
#> AHSG 19.205627 19.23469 19.437665 19.37992 18.847405 19.59803 19.252497
#> AIAG 14.726276 14.52811 14.667486 14.62488 14.649104 13.97571 14.585755
#> AOC3 9.671116 10.25606 9.428427 10.15433 9.718192 10.50247 9.860558
#> APOH 17.458798 18.01638 17.547977 17.69565 17.230260 18.20250 17.184654
#> ATRN 15.393106 15.89522 15.496752 15.65677 15.526452 16.08452 15.257093
#> 156_data2 158_data2 160_data2 161_data2 164_data2 165_data2 168_data2
#> AFM 18.483946 18.010669 18.385003 17.879145 17.903197 17.888331 17.004817
#> AHSG 19.276230 18.915663 18.973446 19.072742 19.088324 18.880597 19.117856
#> AIAG 14.569342 14.682799 14.622459 14.584713 14.688668 14.512316 14.559322
#> AOC3 9.492098 9.735485 9.662316 9.864964 9.193436 9.925697 8.993866
#> APOH 17.462395 17.565055 17.530551 17.132638 17.077047 17.430339 17.456123
#> ATRN 15.715309 15.578068 15.692108 15.352683 15.710086 15.541809 15.683521
#> 169_data2 170_data2 171_data2 173_data2 174_data2 175_data2 176_data2
#> AFM 18.632285 18.085689 18.051762 17.85643 17.836256 18.041862 18.40570
#> AHSG 19.400598 19.363621 18.747689 18.73413 19.685220 19.087447 19.39215
#> AIAG 14.739893 14.531010 14.744388 14.59457 14.683617 14.640865 14.65400
#> AOC3 9.947192 9.186059 9.831393 10.00113 9.766951 9.274928 10.28776
#> APOH 16.529038 17.424281 17.542339 16.10105 17.178624 16.936601 17.52544
#> ATRN 15.769345 15.898010 15.856918 15.43720 15.340032 15.533356 15.53440
#> 178_data2 179_data2 180_data2 182_data2 183_data2 184_data2 186_data2
#> AFM 18.75573 18.27063 18.52774 18.297518 17.582758 17.930931 17.904111
#> AHSG 19.29950 18.94489 19.08033 19.113432 18.691674 18.662868 18.530972
#> AIAG 14.65713 14.64914 14.72467 14.850340 14.827924 14.689922 14.669593
#> AOC3 10.02276 10.47037 9.59893 9.795267 9.370154 9.981769 9.794802
#> APOH 17.86451 17.48350 17.30439 17.544530 17.155819 17.169970 16.660848
#> ATRN 15.77620 15.58480 15.60318 15.697109 14.605720 15.260143 15.403576
#> 187_data2 188_data2 190_data2 192_data2 194_data2 195_data2 196_data2
#> AFM 18.396673 17.894678 17.707195 17.809669 18.34009 18.179624 18.596355
#> AHSG 19.080693 19.278260 18.558606 18.662771 19.21291 18.730319 18.834565
#> AIAG 14.620739 14.787837 14.720343 14.652637 14.68076 14.634261 14.678035
#> AOC3 9.702123 9.681856 9.736804 9.401154 9.33778 9.897792 9.822549
#> APOH 17.321073 17.005514 17.087448 17.047272 17.03732 17.227674 15.927422
#> ATRN 15.621545 14.806060 14.983297 15.092230 15.42662 15.727192 15.855226
#> 197_data2 198_data2 199_data2 205_data2 206_data2 207_data2 208_data2
#> AFM 18.00268 18.27635 18.331772 18.077828 17.452173 18.05501 18.235103
#> AHSG 18.25441 18.71128 18.792804 18.912961 18.840506 18.62855 18.553961
#> AIAG 14.63728 14.52884 14.778585 14.633616 14.814071 14.76750 14.690582
#> AOC3 10.00159 10.02890 9.634046 9.938078 9.831058 10.20700 9.498681
#> APOH 17.04321 17.17218 17.459782 16.547486 16.958609 16.02782 16.905076
#> ATRN 15.34257 15.24551 14.835897 15.954050 14.513800 15.21354 16.874498
#> 209_data2 210_data2 211_data2 212_data2 213_data2 214_data2 215_data2
#> AFM 18.132287 18.375079 17.770032 17.724905 17.657647 18.38242 17.921772
#> AHSG 18.949066 18.702423 18.877115 18.269341 19.118199 18.71252 19.296103
#> AIAG 14.909930 14.706238 14.684011 14.823715 14.893650 14.75854 14.343939
#> AOC3 9.579414 9.678326 9.495482 9.469346 8.824347 10.35025 9.412162
#> APOH 17.464916 17.128459 17.186659 17.072809 16.864841 16.59375 17.417278
#> ATRN 16.064397 16.378393 14.989205 15.140738 14.477049 15.09208 15.186785
#> 216_data2 218_data2 219_data2 221_data2 223_data2 225_data2 226_data2
#> AFM 18.632524 18.51812 18.917493 17.185341 19.13733 17.39628 17.668124
#> AHSG 19.355160 19.53827 19.493397 19.298672 19.89682 18.29875 19.171998
#> AIAG 14.913842 14.73214 14.965833 14.728767 14.68477 14.77646 14.697848
#> AOC3 9.406908 10.27621 9.351153 9.455133 10.01626 10.04424 8.795441
#> APOH 17.499664 17.51376 16.706372 17.315701 16.56589 16.23679 17.200088
#> ATRN 16.374801 15.95412 16.348563 15.242930 15.61262 14.92587 14.939998
#> 227_data2 228_data2 229_data2 230_data2 232_data2 233_data2 234_data2
#> AFM 18.219490 18.34502 18.276027 17.932387 17.929591 18.429553 18.436277
#> AHSG 19.010487 19.86036 18.969241 19.183166 19.269394 19.837211 19.301828
#> AIAG 14.702392 14.60841 14.678561 14.739957 14.701693 14.549578 14.723665
#> AOC3 9.592725 10.32214 9.734937 9.855735 9.760736 9.830378 9.021658
#> APOH 17.853825 16.86624 17.276985 17.590303 17.704829 17.666456 17.173970
#> ATRN 15.955115 16.02096 15.670380 15.186790 15.693796 15.597309 15.563141
#> 238_data2 239_data2 240_data2 241_data2 243_data2 245_data2 247_data2
#> AFM 18.96869 17.293384 17.875729 18.330708 18.483318 18.51463 17.869515
#> AHSG 19.63254 18.752183 18.986113 19.199029 19.283156 19.47072 18.885268
#> AIAG 14.66505 14.841246 14.864199 14.744263 14.824436 14.81997 14.755289
#> AOC3 10.06522 9.142904 8.526826 9.954245 9.788555 10.44169 9.398166
#> APOH 17.94275 17.553791 16.451953 17.468578 17.693520 17.39168 16.492304
#> ATRN 16.13144 15.405926 14.980693 15.970609 15.744037 15.58433 15.330940
#> 249_data2 250_data2 251_data2 252_data2 253_data2 256_data2 260_data2
#> AFM 18.379942 17.75743 18.061166 18.032662 18.031620 18.014187 18.334035
#> AHSG 19.140557 18.71993 18.881908 19.174453 19.121928 19.489746 18.722563
#> AIAG 14.675358 14.70208 14.726250 14.740409 14.687525 14.767787 14.637014
#> AOC3 9.526241 9.00285 9.482894 8.653987 9.523596 9.218346 8.802496
#> APOH 17.227454 17.24986 16.242826 17.319249 17.762734 17.863327 17.505322
#> ATRN 15.175162 14.95746 15.369109 14.607609 14.955496 15.418160 14.746083
#> 261_data2 262_data2 263_data2 264_data2 266_data2 268_data2 269_data2
#> AFM 17.340848 17.434467 18.26882 18.39991 18.228878 16.763601 18.31052
#> AHSG 18.410148 18.410194 18.97058 19.61394 18.955525 17.848421 19.72981
#> AIAG 14.665203 14.704354 14.61000 14.32172 14.573768 14.771025 14.64845
#> AOC3 9.191827 9.278675 10.24927 10.25673 9.106905 8.641794 9.13996
#> APOH 17.600706 17.315108 17.25575 18.16690 17.536522 16.615284 17.70658
#> ATRN 15.157038 14.906791 15.53208 16.16453 15.332228 14.757124 15.56021
#> 272_data2 273_data2 274_data2 276_data2 277_data2 278_data2 280_data2
#> AFM 18.097901 18.24783 17.930339 17.747268 18.180041 18.28853 18.43702
#> AHSG 18.979989 19.01244 18.668717 19.460339 19.246000 19.66590 19.50469
#> AIAG 14.658132 14.57915 14.525636 14.669980 14.633661 14.70032 14.76518
#> AOC3 9.709677 10.23607 8.901961 9.353579 9.874482 10.54489 10.01856
#> APOH 17.302029 16.60388 17.510074 17.271007 17.522941 17.75978 18.01372
#> ATRN 15.579564 15.98848 15.273826 14.715780 15.864879 15.94246 15.46217
#> 281_data2 283_data2 285_data2 287_data2 289_data2 291_data2 292_data2
#> AFM 18.442966 18.39470 17.469177 17.593275 17.319943 18.27916 18.040612
#> AHSG 19.468956 19.52308 18.395481 19.223018 18.488503 19.30705 18.852932
#> AIAG 14.600466 14.78339 14.735214 14.759663 14.690441 14.69510 14.608408
#> AOC3 9.636045 9.93667 9.407982 9.441949 9.188727 9.96577 9.208321
#> APOH 17.441397 17.62818 17.624138 16.631229 17.037041 17.31336 17.497227
#> ATRN 15.990297 15.21573 14.818069 15.639320 14.802373 15.67334 15.660417
#> 293_data2 294_data2 296_data2 297_data2 298_data2 299_data2 300_data2
#> AFM 17.53997 18.106933 17.863355 18.291169 17.886804 18.009294 17.820316
#> AHSG 18.85753 18.996350 18.907338 18.986280 18.944631 19.651977 19.306948
#> AIAG 14.69265 14.654902 14.740586 14.597331 14.774619 14.647562 14.667379
#> AOC3 10.01976 9.674252 8.782559 9.194235 9.032765 9.806832 9.451533
#> APOH 17.22411 17.386070 16.016076 17.244806 16.078584 16.409889 17.134223
#> ATRN 15.39936 15.765481 14.876109 15.528891 14.970902 14.890409 15.277566
#> 304_data2 305_data2 306_data2 307_data2 309_data2 310_data2 312_data2
#> AFM 17.780377 18.088523 17.543665 18.684386 17.421003 17.215059 17.514548
#> AHSG 18.621389 18.451854 18.124493 18.938180 18.037526 18.754185 19.572883
#> AIAG 14.680430 14.606103 14.683937 14.659891 14.857323 14.936426 14.667030
#> AOC3 9.912006 9.107903 8.757357 9.851319 8.624146 9.627355 9.314186
#> APOH 17.013894 17.343102 16.489484 17.055566 16.948763 15.753452 17.233069
#> ATRN 15.677189 15.235679 14.577096 15.037739 14.522558 14.543692 14.308494
#> 313_data2 314_data2 316_data2 317_data2 318_data2 319_data2 320_data2
#> AFM 17.155426 17.928557 17.577918 18.170263 18.162079 17.34586 17.400453
#> AHSG 18.436080 19.262887 17.863462 19.205413 18.730273 18.74122 18.958450
#> AIAG 14.759980 14.658502 14.773180 14.863401 14.722524 14.83162 14.755337
#> AOC3 8.630082 9.672823 8.892625 9.862696 8.795811 9.22160 9.706257
#> APOH 15.700634 17.793827 16.037153 17.414298 17.243269 16.32879 16.123737
#> ATRN 14.112309 15.067181 14.852712 13.845938 14.927448 15.32303 14.881399
#> 321_data2 322_data2 324_data2 325_data2 326_data2 327_data2 17_data1
#> AFM 18.591053 18.308186 18.137755 18.347084 18.252126 17.802494 18.319153
#> AHSG 19.205644 18.744856 18.167016 18.446565 18.901464 18.673620 19.449831
#> AIAG 14.915479 14.970198 14.778891 14.626631 14.828018 14.593578 14.550948
#> AOC3 9.806904 9.859974 9.540925 9.186197 9.941376 9.406369 9.504025
#> APOH 16.170522 16.321222 16.819747 17.227516 17.375660 17.298652 17.518350
#> ATRN 15.581586 15.941980 15.420064 15.432483 15.548218 15.525004 15.905615
#> 18_data1 19_data1 20_data1 22_data1 23_data1 24_data1 25_data1
#> AFM 18.530057 18.096524 17.863494 17.772719 17.906108 18.153054 16.878912
#> AHSG 19.644695 19.666677 19.060631 19.082822 19.179822 19.356952 19.239355
#> AIAG 14.478457 14.574919 14.708477 14.693666 14.688290 14.610936 14.656453
#> AOC3 9.212143 9.140614 8.650803 9.381733 9.690872 9.293172 9.225986
#> APOH 18.010057 12.511891 17.572180 17.591682 17.723092 18.158306 18.011159
#> ATRN 16.165473 15.186984 15.277472 15.088876 15.522584 15.026051 15.112880
#> 27_data1 29_data1 30_data1 31_data1 32_data1 34_data1 35_data1
#> AFM 18.044725 17.916760 18.46724 17.476939 18.259068 17.626156 17.076560
#> AHSG 19.328346 18.329613 18.99762 18.669560 19.470021 18.946247 17.613020
#> AIAG 15.135554 14.642973 14.50106 14.587588 14.392651 14.878944 14.763767
#> AOC3 8.830496 9.607988 10.22964 8.666865 9.197119 8.429024 8.745846
#> APOH 17.688508 17.622580 18.09545 16.932939 18.020715 17.465965 16.136053
#> ATRN 15.356655 15.083532 15.44032 15.050747 15.764067 15.134377 14.673516
#> 38_data1 39_data1 43_data1 44_data1 45_data1
#> AFM 17.819313 17.303960 17.640026 17.274972 18.47362
#> AHSG 18.717438 19.077383 18.607056 18.795921 19.40802
#> AIAG 15.125151 14.911137 14.625692 14.318688 14.54279
#> AOC3 9.241095 9.321773 9.080731 8.895516 10.11394
#> APOH 17.522211 16.976758 16.843956 17.486311 18.01415
#> ATRN 15.402824 15.192443 15.204575 15.563628 15.63803
# Read in annotation including condition and biological replicates.
# Users should make this annotation file.
# OV_SRM_train_annotation <- read.csv(file="OV_SRM_train_annotation.csv", header=TRUE)
head(OV_SRM_train_annotation)
#> BioReplicate Condition
#> 88 111_data2 control
#> 89 112_data2 control
#> 90 114_data2 control
#> 91 115_data2 control
#> 92 117_data2 control
#> 93 118_data2 control
# estimate the mean protein abunadnce and variance in each condition
variance_estimation <- estimateVar(data = OV_SRM_train,
annotation = OV_SRM_train_annotation)
#> Preparing variance analysis...
#> Variance analysis completed.
# the mean protein abundance in each condition
head(variance_estimation$mu)
#> control ovarian cancer
#> AFM 18.213066 17.956584
#> AHSG 19.137513 19.004551
#> AIAG 14.665297 14.699719
#> AOC3 9.749418 9.434263
#> APOH 17.274931 17.161911
#> ATRN 15.604271 15.297676
# the standard deviation in each condition
head(variance_estimation$sigma)
#> control ovarian cancer
#> AFM 0.4212154 0.4212154
#> AHSG 0.4295371 0.4295371
#> AIAG 0.1299203 0.1299203
#> AOC3 0.4432402 0.4432402
#> APOH 0.6306461 0.6306461
#> ATRN 0.4412322 0.4412322
# the mean protein abundance across all the conditions
head(variance_estimation$promean)
#> AFM AHSG AIAG AOC3 APOH ATRN
#> 18.07519 19.06604 14.68380 9.58000 17.21417 15.43945
This function draws the plot for the mean protein abundance (X-axis) vs standard deviation (Y-axis) in each condition. The lowess
function is used to fit the LOWESS smoother between meann protein abundance and standard deviation (square root of variance). This function generates one pdf file with mean-SD plot.
data
: A list with mean protein abundance matrix and standard deviation matrix. It should be the output of estimateVar
function.x.axis.size
: Size of x-axis labeling in Mean-SD Plot. Default is 10.y.axis.size
: Size of y-axis labels. Default is 10.smoother_size
: Size of lowess smoother. Default is 1.width
: Width of the saved pdf file. Default is 4.height
: Height of the saved pdf file. Default is 4.xlimUp
: The upper limit of x-axis for mean-SD plot. Default is 30.ylimUp
: The upper limit of y-axis for mean-SD plot. Default is 3.address
: The name of folder that will store the results. Default folder is the current working directory. The other assigned folder has to be existed under the current working directory. An output pdf file is automatically created with the default name of MeanSDPlot.pdf
. The command address can help to specify where to store the file as well as how to modify the beginning of the file name. If address=FALSE, plot will be not saved as pdf file but showed in window.This function simulate datasets with the given numbers of biological replicates and proteins based on the preliminary dataset (input for this function). The function fits intensity-based linear model on the input data data
in order to get variance and mean abundance, using estimateVar
function. Then it uses variance components and mean abundance to simulate new training data with the given sample size and protein number. It outputs the number of simulated proteins, a vector with the number of simulated samples in each condition, the list of simulated training datasets, the input dataset and the (simulated) validation dataset.
data
: Protein abundance data matrix. Rows are proteins and columns are biological replicates(samples).annotation
: Group information for samples in data. BioReplicate
for sample ID and Condition
for group information are required. BioReplicate
information should match with column names of data
.num_simulations
: Number of times to repeat simulation experiments (Number of simulated datasets). Default is 10.expected_FC
: Expected fold change of proteins. The first option (Default) is “data”, indicating the fold changes are directly estimated from the input data
. The second option is a vector with predefined fold changes of listed proteins. The vector names must match with the unique information of Condition in annotation
. One group must be selected as a baseline and has fold change 1 in the vector. The user should provide list_diff_proteins, which users expect to have the fold changes greater than 1. Other proteins that are not available in list_diff_proteins
will be expected to have fold change = 1.list_diff_proteins
: Vector of proteins names which are set to have fold changes greater than 1 between conditions. If user selected expected_FC= "data"
, this should be NULL.select_simulated_proteins
: The standard to select the simulated proteins among data. It can be 1) “proportion” of total number of proteins in the input data or 2) “number” to specify the number of proteins. “proportion” indicates that user should provide the value for protein_proportion
option. “number” indicates that user should provide the value for protein_number
option.protein_proportion
: Proportion of total number of proteins in the input data to simulate. For example, input data has 1,000 proteins and user selects protein_proportion=0.1
. Proteins are ranked in decreasing order based on their mean abundance across all the samples. Then, 1,000 * 0.1 = 100 proteins will be selected from the top list to simulate. Default is 1.0, which meaans that all the proteins will be used.protein_number
: Number of proteins to simulate. For example, protein_number=1000
. Proteins are ranked in decreasing order based on their mean abundance across all the samples and top protein_number
proteins will be selected to simulate. Default is 1000.samples_per_group
: Number of samples per group to simulate. Default is 50.simulate_validation
: Default is FALSE. If TRUE, simulate the validation set; otherwise, the input data
will be used as the validation set.valid_samples_per_group
: Number of validation samples per group to simulate. This option works only when user selects simulate_validation=TRUE
. Default is 50.# expected_FC = "data": fold change estimated from OV_SRM_train
# select_simulated_proteins = "proportion": select the simulated proteins based on the proportion of total proteins
# simulate_valid = FALSE: use input OV_SRM_train as validation set
simulated_datasets <- simulateDataset(data = OV_SRM_train,
annotation = OV_SRM_train_annotation,
num_simulations = 10, # simulate 10 times
expected_FC = "data",
list_diff_proteins = NULL,
select_simulated_proteins = "proportion",
protein_proportion = 1.0,
protein_number = 1000,
samples_per_group = 50, # 50 samples per condition
simulate_validation = FALSE,
valid_samples_per_group = 50)
Explore the output from simulateDataset
function
# the number of simulated proteins
simulated_datasets$num_proteins
#> [1] 67
# a vector with the number of simulated samples in each condition
simulated_datasets$num_samples
#> control ovarian cancer
#> 50 50
# the list of simulated protein abundance matrices
# Each element of the list represents one simulation
head(simulated_datasets$simulation_train_Xs[[1]]) # first simulation
#> IGHG2 HP CFH AHSG AFM CP ITIH4 SERPINA3
#> 1 22.40482 23.00984 20.33081 19.09392 17.69885 18.24867 18.09419 18.10169
#> 2 23.25603 21.12645 20.38419 19.71872 18.01945 17.86986 18.24948 17.72456
#> 3 23.39762 22.27380 19.98240 19.44773 18.88270 17.49849 18.09422 16.80625
#> 4 22.71356 23.09041 20.59960 18.57199 18.02099 18.48113 17.98023 17.25466
#> 5 23.38322 20.89528 20.61003 18.67773 17.00694 17.74209 17.86105 16.84104
#> 6 23.49541 22.17452 19.71700 18.66859 18.04474 17.56138 18.32948 18.35009
#> KNG1 ITIH2 APOH PON1 CLU SERPINA6 LRG1 LUM
#> 1 17.53131 17.27992 17.61463 16.81735 17.09577 16.81161 16.91699 15.99289
#> 2 17.98632 17.65125 16.03979 17.85555 17.36424 17.31338 16.66503 16.15778
#> 3 17.61667 18.37831 17.60322 18.24571 17.16723 17.15460 17.22751 16.91964
#> 4 17.57207 17.42285 18.40823 17.81395 17.26068 16.41556 15.80352 16.37024
#> 5 17.46295 17.94563 16.87722 17.14690 16.99361 16.97500 17.05040 16.05430
#> 6 17.76498 17.58303 17.63170 17.42704 17.32044 16.44519 16.39164 16.61327
#> FETUA KLKB1 ATRN LGALS3BP AIAG ECM1 F5 HYOU1
#> 1 15.84250 16.04403 15.32355 15.17587 14.70032 14.36122 14.04064 13.69978
#> 2 16.05571 15.66055 15.40814 15.60837 14.75709 14.17426 14.78274 13.83088
#> 3 15.92873 15.25140 15.21459 14.97183 14.74649 14.50215 14.07942 14.22014
#> 4 16.03435 15.43814 15.54451 15.15642 14.78661 14.19315 14.71343 14.79360
#> 5 16.01980 15.75087 15.42862 13.89146 14.57379 14.33050 14.42323 14.18743
#> 6 16.10293 15.75371 15.95756 16.42996 14.78941 14.38432 14.08663 14.39559
#> COL6A6 SERPINA10 BTD VTN PLTP CD44 F11 CPE
#> 1 13.79412 15.09382 13.32197 14.57450 13.44028 12.99956 12.43136 12.82504
#> 2 14.07601 13.88454 13.85354 12.35928 13.33812 13.15100 12.95762 12.47567
#> 3 14.67895 13.77066 13.75685 13.40903 13.29140 13.17085 13.03843 12.34966
#> 4 13.71271 13.79252 13.55102 12.68859 12.48461 12.43085 12.71582 13.44062
#> 5 14.07771 13.71243 13.73849 13.34258 13.42770 12.39525 12.92457 13.14615
#> 6 13.85822 13.58162 14.25706 13.62358 12.43050 12.50842 12.49202 12.82479
#> CTBS SERPINA7 ICAM1 NCAM1 LCN2 PRG4 FN1 CD163
#> 1 12.31476 12.56533 12.03541 12.34344 12.29365 10.98775 11.29993 11.03457
#> 2 13.21995 12.41423 11.90704 11.93090 12.07856 10.82247 12.55632 10.97199
#> 3 13.12391 12.10277 12.03083 12.39446 12.20244 12.32356 12.28569 12.16632
#> 4 12.40470 12.36931 11.68299 12.15500 12.64630 11.69571 11.83740 10.82227
#> 5 11.51270 12.65225 12.02024 11.93456 12.97506 12.13186 12.19773 11.34493
#> 6 12.59399 12.49565 11.64221 12.72775 12.40035 12.58392 11.77140 12.09081
#> CDH5 CADM1 C20orf3 CTSD PVRL1 CDH13 PCYOX1 DSG2
#> 1 11.59403 12.28851 12.025278 10.52866 10.94412 10.80788 10.79134 11.95877
#> 2 11.50424 11.09464 10.797573 11.50009 11.60018 11.26792 11.08467 10.64869
#> 3 12.15642 11.32580 11.079564 10.90216 11.93590 10.88730 11.52650 10.66855
#> 4 12.13021 11.32686 10.036195 10.89993 11.46797 11.31214 11.54076 11.36620
#> 5 12.25921 11.08039 9.082887 10.76030 11.56048 11.68042 10.53968 10.97492
#> 6 11.60358 11.07440 12.024120 11.03533 11.63307 11.73872 11.20701 11.18927
#> TIMP1 MFAP4 IGFBP3 SLC3A2 ICAM2 GOLM1 LAMP1
#> 1 11.848948 10.403352 9.479864 10.889588 10.43002 11.056834 8.750730
#> 2 10.682296 9.291595 11.877488 10.927713 10.09473 9.573162 10.666186
#> 3 10.426722 10.529579 10.530042 9.750325 10.06917 10.316901 10.596743
#> 4 9.334363 10.505516 12.191306 11.304023 10.45227 10.431816 9.665679
#> 5 11.080018 11.037454 10.975818 11.126020 10.48768 9.310283 10.327831
#> 6 11.059805 10.226500 10.323309 10.563332 10.00717 9.997901 10.719308
#> CHL1 L1CAM TNC MRC2 LAMC1 STAB1 DSC2
#> 1 10.109817 9.839058 9.185997 9.383445 9.349258 9.011546 9.345911
#> 2 10.697824 10.441000 9.312804 10.539618 8.857576 10.125238 9.184112
#> 3 10.105239 10.352511 9.680776 10.398155 8.914689 9.277254 8.692133
#> 4 9.637052 10.596595 9.593764 10.745653 9.829757 9.746128 10.116461
#> 5 10.279098 10.593947 9.637292 10.873020 8.967765 10.200051 9.355787
#> 6 10.564245 10.502249 10.096760 10.684266 9.154671 10.024178 9.632889
#> AOC3 SIRPA CFP PGCP THBS1
#> 1 9.170133 9.436817 8.990694 8.727336 8.173523
#> 2 9.417428 9.432738 9.811747 8.605372 6.397964
#> 3 10.191633 9.226277 9.487549 9.313502 9.767153
#> 4 9.035609 9.234454 8.346252 9.125831 8.862459
#> 5 9.912055 9.535892 8.148613 9.653248 7.100239
#> 6 10.489197 8.753985 9.814205 9.408186 8.055810
# the list of simulated condition vectors
# Each element of the list represents one simulation
head(simulated_datasets$simulation_train_Ys[[1]]) # first simulation
#> [1] ovarian cancer control control control control
#> [6] control
#> Levels: control ovarian cancer
User can also specify the expected fold change of proteins they consider to be differentially abundant between conditions.
# expected_FC = expected_FC: user defined fold change
unique(OV_SRM_train_annotation$Condition)
#> [1] control ovarian cancer
#> Levels: benign ovarian cancer control
expected_FC <- c(1, 1.5)
names(expected_FC) <- c("control", "ovarian cancer")
set.seed(1212)
# Here I randomly select some proteins as differential to show how the function works
# The user should prepare this list of differential proteins by themselves
diff_proteins <- sample(rownames(OV_SRM_train), 20)
simualted_datasets_predefined_FC <- simulateDataset(data = OV_SRM_train,
annotation = OV_SRM_train_annotation,
num_simulations = 10, # simulate 10 times
expected_FC = expected_FC,
list_diff_proteins = diff_proteins,
select_simulated_proteins = "proportion",
protein_proportion = 1.0,
protein_number = 1000,
samples_per_group = 50, # 50 samples per condition
simulate_validation = FALSE,
valid_samples_per_group = 50)
This function fits the classification model, in order to classify the subjects in the simulated training datasets (in the output of simulatedDataset
). Then the fitted model is validated by the (simulated) validation set. Two performance are reported : (1) the mean predictive accuracy : The function trains classifier on each simulated training dataset and reports the predictive accuracy of the trained classifier on the validation data (output of SimulateDataset
function). Then these predictive accuracies are averaged over all the simulation. (2) the mean protein importance : It represents the importance of a protein in separating different groups. It is estimated on each simulated training dataset using function varImp
from package caret. Please refer to the help file of varImp
about how each classifier calculates the protein importance. Then these importance values for each protein are averaged over all the simulation.
The list of classification models trained on each simulated dataset, the predictive accuracy on the validation set predicted by the corresponding classification model and the importance value for all the proteins estimated by the corresponding classification model are also reported.
simulations
: A list of simulated datasets It should be the name of the output of SimulateDataset
function.classifier
: A string specifying which classfier to use. This function uses function train
from package caret. The options are 1) rf (random forest calssifier, default option). 2) nnet (neural network), 3) svmLinear (support vector machines with linear kernel), 4) logreg(logistic regression), and 5) naive_bayes (naive_bayes).parallel
: Default is FALSE. If TRUE, parallel computation is performed.classification_results <- designSampleSizeClassification(
simulations = simulated_datasets,
parallel = FALSE)
Explore the output of designSampleSizeClassification
# the number of simulated proteins
classification_results$num_proteins
#> [1] 67
# a vector with the number of simulated samples in each condition
classification_results$num_samples
#> control ovarian cancer
#> 50 50
# the mean predictive accuracy over all the simulated datasets,
# which have same 'num_proteins' and 'num_samples'
classification_results$mean_predictive_accuracy
#> [1] 0.7196532
# the mean protein importance vector over all the simulated datasets,
# the length of which is 'num_proteins'.
head(classification_results$mean_feature_importance)
#> TIMP1 IGHG2 SERPINA3 GOLM1 LRG1 THBS1
#> 10 8 8 8 7 6
In order to speed up the running time, the package also provides parallel computation for designSampleSizeClassification
function.
## try parallel computation to speed up
## The parallel computation may cause error while allocating the core resource
## Then the users can try the abova function without parallel computation
classification_results_parallel <- designSampleSizeClassification(
simulations = simulated_datasets,
parallel = TRUE)
This function visualizes for sample size calculation in classification. Mean predictive accuracy and mean protein importance under each sample size is from the input data
, which is the output from function designSampleSizeClassification
. To illustrate the mean predictive accuracy and protein importance under different sample sizes, it generates two types of plots in pdf files as output :
The predictive accuracy plot shows the mean predictive accuracy under different sample sizes. The X-axis represents different sample sizes and y-axis represents the mean predictive accuracy.
The protein importance plot includes multiple subplots. The number of subplots is equal to list_samples_per_group
. Each subplot shows the top num_important_proteins_show
most important proteins under each sample size. The Y-axis of each subplot is the protein name and X-axis is the mean protein importance under the sample size.
While varying the number of biological replicates to simulate, the sample size per condition which generates the largest predictive accuracy can be found from the predictive accuracy plot, The optimal sample size per condition can be used to design future experiments. Also, the proteins, which can classify the conditions best, are reported by the protein importance plot.
data
: A list of outputs from function designSampleSizeClassification
. Each element represents the results under a specific sample size. The input should include at least two simulation results with different sample sizes.list_samples_per_group
: A vector includes the different sample sizes simulated. This is required. The number of simulation in the input data
should be equal to the length of list_samples_per_groupnum_important_proteins_show
: The number of proteins to show in protein importance plot.protein_importance_plot
: TRUE(default) draws protein importance plot.predictive_accuracy_plot
: TRUE(default) draws predictive accuracy plot.x.axis.size
: Size of x-axis labeling in predictive accuracy plot and protein importance plot. Default is 10.y.axis.size
: Size of y-axis labels in predictive accuracy plot and protein importance plot. Default is 10.predictive_accuracy_plot_width
: Width of the saved pdf file for predictive accuracy plot. Default is 4.predictive_accuracy_plot_height
: Height of the saved pdf file for predictive accuracy plot. Default is 4.protein_importance_plot_width
: Width of the saved pdf file for protein importance plot. Default is 3.protein_importance_plot_height
: Height of the saved pdf file for protein importance plot. Default is 3.ylimUp_predictive_accuracy
: The upper limit of y-axis for predictive accuracy plot. Default is 1. The range should be 0 to 1.ylimDown_predictive_accuracy
: The lower limit of y-axis for predictive accuracy plot. Default is 0.0. The range should be 0 to 1.address
: The name of folder that will store the results. Default folder is the current working directory. The other assigned folder has to be existed under the current working directory. An output pdf file is automatically created with the default name of PredictiveAccuracyPlot.pdf
and ProteinImportancePlot.pdf
. The command address can help to specify where to store the file as well as how to modify the beginning of the file name. If address=FALSE, plot will be not saved as pdf file but showed in window.#### sample size classification ####
# simulate different sample sizes
# 1) 10 biological replicats per group
# 1) 25 biological replicats per group
# 2) 50 biological replicats per group
# 3) 100 biological replicats per group
# 4) 200 biological replicats per group
list_samples_per_group <- c(10, 25, 50, 100, 200)
# save the simulation results under each sample size
multiple_sample_sizes <- list()
for(i in seq_along(list_samples_per_group)){
# run simulation for each sample size
simulated_datasets <- simulateDataset(data = OV_SRM_train,
annotation = OV_SRM_train_annotation,
num_simulations = 10, # simulate 10 times
expected_FC = "data",
list_diff_proteins = NULL,
select_simulated_proteins = "proportion",
protein_proportion = 1.0,
protein_number = 1000,
samples_per_group = list_samples_per_group[i],
simulate_valid = FALSE,
valid_samples_per_group = 50)
# run classification performance estimation for each sample size
res <- designSampleSizeClassification(simulations = simualted_datasets,
parallel = TRUE)
# save results
multiple_sample_sizes[[i]] <- res
}
## make the plots
designSampleSizeClassificationPlots(multiple_sample_sizes,
list_samples_per_group,
ylimUp_predictive_accuracy = 0.8,
ylimDown_predictive_accuracy = 0.6)
The function fits intensity-based linear model on the input data
. Then it uses the fitted models and the fold changes estimated from the models to calculate sample size for hypothesis testing through designSampleSize
function from MSstats package. It outputs a table with the minimal number of biological replciates per condition to acquire the expected FDR and power under different fold changes, and a PDF file with the sample size plot.
data
: Protein abundance data matrix. Rows are proteins and columns are biological replicates (samples).annotation
: Group information for samples in data. BioReplicate
for sample ID and Condition
for group information are required. BioReplicate
information should match with column names of data
.desired_FC
: the range of a desired fold change. The first option (Default) is “data”, indicating the range of the desired fold change is directly estimated from the input data
, which are the minimal fold change and the maximal fold change in the input `data’. The second option is a vector which includes the lower and upper values of the desired fold change (For example, c(1.25,1.75)).select_testing_proteins
: the standard to select the proteins for hypothesis testing and sample size calculation. The variance (and the range of desired fold change if desiredFC = “data”) for sample size calculation will be estimated from the selected proteins. It can be 1) “proportion” of total number of proteins in the input data orprotein_proportion
option. “number” indicates that user should provide the value for protein_number
option.protein_proportion
: Proportion of total number of proteins in the input data to test. For example, input data has 1,000 proteins and user selects protein_proportion=0.1
. Proteins are ranked in decreasing order based on their mean abundance across all the samples. Then, 1,000 * 0.1 = 100 proteins will be selected from the top list to test. Default is 1.0, which meaans that all the proteins will be used.protein_number
: Number of proteins to test. For example, protein_number=1000
. Proteins are ranked in decreasing order based on their mean abundance across all the samples and top protein_number
proteins will be selected to test. Default is 1000.FDR
: a pre-specified false discovery ratio (FDR) to control the overall false positive. Default is 0.05.power
: a pre-specified statistical power which defined as the probability of detecting a true fold change. You should input the average of power you expect. Default is 0.9.width
: Width of the saved pdf file. Default is 5.height
: Height of the saved pdf file. Default is 5.address
: The name of folder that will store the results. Default folder is the current working directory. The other assigned folder has to be existed under the current working directory. An output pdf file is automatically created with the default name of HypothesisTestingSampleSizePlot.pdf
. The command address can help to specify where to store the file as well as how to modify the beginning of the file name. If address=FALSE, plot will be not saved as pdf file but showed in window.# output a pdf file with sample size calculation plot for hypothesis testing
# also return a table which summaries the plot
HT_res <- designSampleSizeHypothesisTestingPlot(data = OV_SRM_train,
annotation= OV_SRM_train_annotation,
desired_FC = "data",
select_testing_proteins = "proportion",
protein_proportion = 1.0,
protein_number = 1000,
FDR=0.05,
power=0.9)
#> Preparing variance analysis...
#> Variance analysis completed.
#> Number of proteins to test: 67
#> The 1st quantile of fold changes from input data is 1.0074, which is too small. The minimal fold change for sample size estimation is set to 1.1
#> Drew the sample size plot for hypothesis testing!
# data frame with columns desiredFC, numSample, FDR, power and CV
head(HT_res)
#> desiredFC numSample FDR power CV
#> 1 1.100 510 0.05 0.9 0.001
#> 2 1.125 334 0.05 0.9 0.001
#> 3 1.150 237 0.05 0.9 0.002
#> 4 1.175 178 0.05 0.9 0.002
#> 5 1.200 139 0.05 0.9 0.003
#> 6 1.225 112 0.05 0.9 0.003
This function draws PCA plots for the preliminary dataset and each simulated dataset in simulations
(input for this function). It outputs a pdf file where the number of page is equal to the number of simulations plus 1. The first page represents a PCA plot for the input data
(OV_SRM_train
). Each of the following pages presents a PCA plot under one simulation. X-axis of PCA plot is the first component and y-axis is the second component. This function can be used to validate whether the simulated dataset looks consistent with the input preliminary dataset.
simulations
: A list of simulated datasets. It should be the output of simulateDataset
function.which.PCA
: Select one PCA plot to show. It can be “all”, “allonly”, or “simulationX”. X should be index of simulation, such as “simulation1” or “simulation5”. Default is “all”, which generates all the plots. “allonly” generates the PCA plot for the whole input dataset. “simulationX” generates the PCA plot for a specific simulated dataset (given by index).x.axis.size
: Size of x-axis labeling in PCA Plot. Default is 10.y.axis.size
: Size of y-axis labels. Default is 10.dot.size
: Size of dots in PCA plot. Default is 3.legend.size
: Size of legend above Profile plot. Default is 7.width
: Width of the saved pdf file. Default is 6.height
: Height of the saved pdf file. Default is 5.address
: The name of folder that will store the results. Default folder is the current working directory. The other assigned folder has to be existed under the current working directory. An output pdf file is automatically created with the default name of PCAPlot.pdf
. The command address can help to specify where to store the file as well as how to modify the beginning of the file name. If address=FALSE, plot will be not saved as pdf file but showed in window.