Description Usage Arguments Details Value References See Also Examples
This function creates an msgfPar object with the specified parameters. If some parameters have not been specified they will not be part of the MS-GF+ call and MS-GF+'s own defaults kicks in; Consult the MS-GF+ documentation for these. Note however that at least a database file is required to run an analysis.
1 2 | msgfPar(database, tolerance, isotopeError, tda, fragmentation, instrument,
enzyme, protocol, ntt, modification, lengthRange, chargeRange, matches)
|
database |
The location of the fasta file to use as search database |
tolerance |
The parent ion tolerance to use. In simple cases a string in the form '20 ppm' or '1 Da' or an msgfParTolerance object if asymmetric tolerance is desired |
isotopeError |
The range of isotope errors used to correct for non-monoisotopic peaks. Either a numeric vector of length 2 specifying the lower and upper bounds of the range, or an msgfParIsotopeError object |
tda |
|
fragmentation |
An integer specifying which fragmentation has been used during data acquisition. See details. |
instrument |
An integer specifying the type of instrument used during data acquisition. See details. |
enzyme |
An integer or name specifying the enzyme that has been used for protein digestion. See details. |
protocol |
An integer or name specifying the type of preparation that has been done for the samples. See details. |
ntt |
An integer specifying the cleavage specificity (Number of Tolerable Termini). 2 only allows fully tryptic peptide (if trypsin is used), 1 allows semitryptic peptides and 0 allows unspecific peptides |
modification |
An msgfParModificationList object or a list containing the named elements nMod and modifications containing respectively an integer with the number of allowed modifications per petide and the modifications to search for as msgfParModification |
lengthRange |
A two element vector containing the lower and upper bounds of the residue length to search for |
chargeRange |
A two element vector containing the lower and upper bounds of the charge range to search for |
matches |
The number of matches to report per spectrum |
Please consult the MS-GF+ documentation for full description of the parameters
Fragmentation is usually specified as an integer according to the following lookup
As written in the spectrum or CID if no info
CID
ETD
HCD
Merge spectra from the same precursor
It is possible to use the full name of the description for a more litteral function call
Instrument can likewise be specified as an integer or as a name according to this list
LowRes
HighRes
TOF
QExactive
Enymes are specified in the same manner using the following list
Unspecific cleavage
Trypsin
Chymotrypsin
Lys-C
Lys-N
glutamyl endopeptidase (Glu-C)
Arg-C
Asp-N
alphaLP
No cleavage
The protocol informs MS-GF+ whether a special sample treatment has been performed as part of the analysis. The protocol is specified according to the following list
No protocol
Phosphorylation
iTRAQ
iTRAQPhospho
An msgfPar object
Other msgfParClasses: msgfPar-class
,
msgfParChargeRange-class
,
msgfParEnzyme-class
,
msgfParFragmentation-class
,
msgfParInstrument-class
,
msgfParIsotopeError-class
,
msgfParLengthRange-class
,
msgfParMatches-class
,
msgfParModification-class
,
msgfParModificationList-class
,
msgfParNtt-class
,
msgfParProtocol-class
,
msgfParTda-class
,
msgfParTolerance-class
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 | # Example of specifying all parameters - usually not necessary
parameters <- msgfPar(
database=system.file(package='MSGFplus', 'extdata', 'milk-proteins.fasta'),
tolerance='20 ppm',
isotopeError=c(0, 2),
tda=TRUE,
fragmentation='CID',
instrument='TOF',
enzyme='Lys-C',
protocol='No protocol',
ntt=2,
modification=list(
nMod=2,
modifications=list(
list(name='Carbamidomethyl',
composition='C2H3N1O1',
residues='C',
type='fix',
position='any'
),
list(name='Oxidation',
mass=15.994915,
residues='M',
type='opt',
position='any'
)
)
),
lengthRange=c(6,40),
chargeRange=c(2,7),
matches=1
)
parameters
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.