View source: R/calculate_sequence_coverage.R
calculate_sequence_coverage | R Documentation |
Calculate sequence coverage for each identified protein.
calculate_sequence_coverage(data, protein_sequence, peptides)
data |
a data frame containing at least the protein sequence and the identified peptides as columns. |
protein_sequence |
a character column in the |
peptides |
a character column in the |
A new column in the data
data frame containing the calculated sequence coverage
for each identified protein
data <- data.frame(
protein_sequence = c("abcdefghijklmnop", "abcdefghijklmnop"),
pep_stripped_sequence = c("abc", "jklmn")
)
calculate_sequence_coverage(
data,
protein_sequence = protein_sequence,
peptides = pep_stripped_sequence
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.