Description Usage Arguments Value Note Author(s) See Also Examples
View source: R/convert_species.R
Converts the species in the spectral reference library to the species in the digested fasta data frame where full peptide identity occurs.
1 2 | convertSpecies(digest.df = NULL, SRL.df = NULL,
SRL.format = "peakview")
|
digest.df |
A data frame of the digested protein sequence from the
desired species generated from |
SRL.df |
A data frame of the spectral reference library from
|
SRL.format |
The format of the SRL. Either "peakview" for PeakView or OneOmics SRLs or "openswath" for OpenSWATH SRLs. Defaults to "peakview". |
A data frame of the new spectral reference library with the peptides from the desired species.
This process will remove the retention time calibration protein from a PeakView/OneOmics SRL.
Madeleine J Otway motway@cmri.org.au
For required functions before converting SRL, see:
importFfasta
,
digestFasta
, importSRL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(rat_srl_example)
data(human_digest_example)
convertSpecies(human_digest_example, rat_srl_example)
convertSpecies(human_digest_example, rat_srl_example, SRL.format = "peakview")
## Workflow
fasta <- system.file("extdata",
"human_proteome_example.fasta",
package = "dialects")
human_proteome_example <- import.fasta(fasta)
human_digest_example <- digest.fasta(human_proteome_example)
srl_pv <- system.file("extdata",
"rat_srl_example.txt",
package = "dialects")
rat_srl_example <- import.srl(srl_pv, SRL.format = "peakview")
convertSpecies(human_digest_example, rat_srl_example)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.