Description Usage Arguments Details Value Note Author(s) See Also Examples
This function performs an in-silico trypsin digestion on a data frame from a protein sequence fasta file.
1 | digestFasta(fasta.df = NULL)
|
fasta.df |
Data frame generated from |
Data frame must have the vector names: accession, name, sequence
Returns a data frame of the peptide sequences of the digested proteins.
This function removes all non-unique peptides. Removes all peptides less than 5 and greater than 52 amino acids.
Madeleine J Otway motway@cmri.org.au
For required functions before digesting fasta file, see:
import.fasta
1 2 3 4 5 6 7 8 9 | data(human_proteome_example)
digestFasta(human_proteome_example)
## Workflow
fasta <- system.file("extdata",
"human_proteome_example.fasta",
package = "dialects")
human_proteome_example <- import.fasta(fasta)
digestFasta(human_proteome_example)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.