forked from Vitek-Lab/MSstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OpenSWATHtoMSstatsFormat.Rd
37 lines (31 loc) · 1.69 KB
/
OpenSWATHtoMSstatsFormat.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
\name{OpenSWATHtoMSstatsFormat}
\alias{OpenSWATHtoMSstatsFormat}
\title{Generate MSstats required input format for OpenSWATH output}
\description{Preprocess MSstats input report from OpenSWATH and convert into the required input format for MSstats.}
\usage{
OpenSWATHtoMSstatsFormat(input,
annotation = NULL,
filter_with_mscore = TRUE,
mscore_cutoff = 0.01,
useUniquePeptide = TRUE,
fewMeasurements="remove",
removeProtein_with1Feature = FALSE,
summaryforMultipleRows=max)
}
\arguments{
\item{input}{name of MSstats input report from OpenSWATH, which includes feature-level data.}
\item{annotation}{name of 'annotation.txt' data which includes Condition, BioReplicate, Run. Run should be the same as filename.}
\item{filter_with_mscore}{TRUE(default) will filter out the features that have greater than mscore_cutoff in m_score column. Those features will be removed.}
\item{mscore_cutoff}{Cutoff for m_score. default is 0.01.}
\item{useUniquePeptide}{TRUE(default) removes peptides that are assigned for more than one proteins. We assume to use unique peptide for each protein.}
\item{fewMeasurements}{'remove' (default) will remove the features that have 1 or 2 measurements across runs.}
\item{removeProtein_with1Feature}{TRUE will remove the proteins which have only 1 peptide and charge. FALSE is default.}
\item{summaryforMultipleRows}{max(default) or sum - when there are multiple measurements for certain feature and certain run, use highest or sum of multiple intensities.}
}
\value{data.frame with the required format of MSstats.}
\author{Meena Choi, Olga Vitek.
Maintainer: Meena Choi (\email{[email protected]})
}
\examples{
# Example will be ready in next version.
}