Description Usage Arguments Value Examples
Searches for proteins/peptides that are not found in all timepoints. This can be done for each condition independently (strict = FALSE) or shared across conditions (strict = TRUE).
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 | filterByMissingTimepoints(x, ...)
## S4 method for signature 'SilacProteinExperiment'
filterByMissingTimepoints(
x,
assayName,
maxMissing = 0,
strict = TRUE,
conditionCol,
returnVector = FALSE
)
## S4 method for signature 'SilacPeptideExperiment'
filterByMissingTimepoints(
x,
assayName,
maxMissing = 0,
strict = TRUE,
conditionCol,
returnVector = FALSE
)
## S4 method for signature 'SilacProteomicsExperiment'
filterByMissingTimepoints(
x,
assayName,
maxMissing = 0,
strict = TRUE,
conditionCol,
returnVector = FALSE
)
|
x |
A |
... |
Unused. |
assayName |
A character indicating which assay will be used to count the number of missed timepoints. |
maxMissing |
A numeric indicating how many timepoints are allowed to be missed. |
strict |
Logical: if TRUE, then proteins have to meet the maxMissing criteria in all conditions and time replicates to pass; if FALSE then proteins only have to meet the maxMissing criteria in one condition or time replicate to pass. |
conditionCol |
A |
returnVector |
Logical: if TRUE then a vector with the positions to be subset is returned. |
A SilacProteinExperiment
, SilacPeptideExperiment
or a
SilacProteomicsExperiment
object or a logical vector with the rows that
pass the minimum number of desired timepoints.
1 2 3 4 5 | data('wormsPE')
filterByMissingTimepoints(wormsPE,
assayName = 'ratio',
maxMissing = 2,
strict = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.