Description Usage Arguments Value Examples
View source: R/LIST_INDEX_VECTOR_GetMatchs.R
DATAFRAME_AnnotateProteotypic Since we observe that some proteins are not present in the Proteins field, we decieded to
1 | DATATABLE_AnnotateProteotypic(PeptideDataFrame, ProteinBank, Threads = 1)
|
PeptideDataFrame |
MaxQuant peptide search as a data frame |
ProteinBank |
AAStringSet of the protein fasta file that was used for the mass spectrometry analysis |
Threads |
Number of parallel sessions (numeric) |
PeptideDataFrame Updated data frame with informations
1 2 3 4 5 6 7 8 9 10 11 | library(isoformnspectRe)
ProteinBankFastaFilePath <- system.file("extdata",
"protein_bank.example.fasta",
package = "isoformnspectRe")
ProteinBank <- Biostrings::readAAStringSet(ProteinBankFastaFilePath)
PeptidePath <- system.file("extdata",
"peptides.example.txt",
package = "isoformnspectRe")
options(datatable.integer64 = "numeric")
Peptides <- data.table::fread(PeptidePath, sep = "\t")
DATATABLE_AnnotateProteotypic(Peptides, ProteinBank, Threads = 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.