forked from Vitek-Lab/MSstats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProgenesistoMSstatsFormat.Rd
42 lines (34 loc) · 1.85 KB
/
ProgenesistoMSstatsFormat.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
38
39
40
41
42
\name{ProgenesistoMSstatsFormat}
\alias{ProgenesistoMSstatsFormat}
\title{Generate MSstats required input format for Progenesis output}
\description{Convert Progenesis output into the required input format for MSstats.}
\usage{
ProgenesistoMSstatsFormat(input,
annotation,
useUniquePeptide=TRUE,
summaryforMultipleRows=max,
fewMeasurements="remove",
removeOxidationMpeptides=FALSE,
removeProtein_with1Peptide=FALSE)
}
\arguments{
\item{input}{name of Progenesis output, which is wide-format. 'Accession', 'Sequence', 'Modification', 'Charge' and one column for each run are required.}
\item{annotation}{name of 'annotation.txt' or 'annotation.csv' data which includes Condition, BioReplicate, Run information. It will be matched with the column name of input for MS runs.}
\item{useUniquePeptide}{TRUE(default) removes peptides that are assigned for more than one proteins. We assume to use unique peptide for each protein.}
\item{summaryforMultipleRows}{max(default) or sum - when there are multiple measurements for certain feature and certain run, use highest or sum of multiple intensities.
}
\item{fewMeasurements}{'remove'(default) will remove the features that have 1 or 2 measurements across runs.}
\item{removeOxidationMpeptides}{TRUE will remove the modified peptides including 'Oxidation (M)' sequence. FALSE is default.}
\item{removeProtein_with1Peptide}{TRUE will remove the proteins which have only 1 peptide and charge. FALSE is default.}
}
\value{data.frame with the required format of MSstats.}
\author{Meena Choi, Olga Vitek.
Maintainer: Meena Choi (\email{[email protected]})
}
\examples{
# Please check section 4.4.
# Suggested workflow with Progenesis output for DDA in MSstats user manual.
# Output of ProgenesistoMSstatsFormat function
# should have the same 10 columns as an example dataset.
head(DDARawData)
}