Description Usage Arguments Details Value Author(s) References See Also Examples
Prediction of the flyability of proteotypic peptides.
1 2 | ## Default S3 method:
proteotypic(fasta, apex_model, min_aa=4 , max_aa=20, ...)
|
fasta |
a amino acid FASTA file. |
apex_model |
an |
min_aa |
the minimum number of amino acids for proteotypic peptides. |
max_aa |
the maximum number of amino acids for proteotypic peptides. |
... |
future extensions. |
This function provides prediction of the "flyability" of proteotypic peptides using the APEX method (Lu et al., 2006; Vogel et al., 2008). The APEX scores are probabilities that indicate detectability of the peptide amino acid sequence in LC-MS/MS experiments.
A data.frame containing peptide sequences and associated APEX scores.
George Rosenberger gr2578@cumc.columbia.edu
Lu, P., Vogel, C., Wang, R., Yao, X. & Marcotte, E. M. Absolute protein expression profiling estimates the relative contributions of transcriptional and translational regulation. Nat Biotech 25, 117-124 (2006).
Vogel, C. & Marcotte, E. M. Calculating absolute and relative protein abundance from mass spectrometry-based protein expression data. Nat Protoc 3, 1444-1451 (2008).
import
, ProteinInference
, AbsoluteQuantification
, ALF
, APEX
, apexFeatures
1 2 3 4 5 6 7 8 9 10 11 | set.seed(131)
data(APEXMS)
APEX_ORBI<-head(APEX_ORBI,20) # Remove this line for real applications
APEX_ORBI.af <- apexFeatures(APEX_ORBI)
APEX_ORBI.apex <- APEX(data=APEX_ORBI.af)
peptides <- proteotypic(fasta=system.file("extdata","example.fasta",package="aLFQ"),
apex_model=APEX_ORBI.apex, min_aa=4 , max_aa=20)
## Not run: print(peptides)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.