Find peptide location
The position of the given peptide sequence is searched within the given protein sequence. In addition the last amino acid of the peptide and the amino acid right before are reported.
find_peptide(data, protein_sequence, peptide_sequence)
data |
A data frame containing at least the protein and peptide sequence. |
protein_sequence |
The name of the column containing the protein sequence. |
peptide_sequence |
The name of the column containing the peptide sequence. |
A data frame that contains the input data and four additional columns with start and end position, the last amino acid and the amino acid before.
data <- data.frame(protein_sequence = c("abcdefg"), peptide_sequence = c("cde")) find_peptide(data, protein_sequence, peptide_sequence)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.