find_peptide: Find peptide location

View source: R/find_peptide.R

find_peptideR Documentation

Find peptide location

Description

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.

Usage

find_peptide(data, protein_sequence, peptide_sequence)

Arguments

data

a data frame that contains at least the protein and peptide sequence.

protein_sequence

a character column in the data data frame that contains the protein sequence.

peptide_sequence

a character column in the data data frame that contains the peptide sequence.

Value

A data frame that contains the input data and four additional columns with peptide start and end position, the last amino acid and the amino acid before the peptide.

Examples

# Create example data
data <- data.frame(
  protein_sequence = c("abcdefg"),
  peptide_sequence = c("cde")
)

# Find peptide
find_peptide(
  data = data,
  protein_sequence = protein_sequence,
  peptide_sequence = peptide_sequence
)

protti documentation built on Jan. 22, 2023, 1:11 a.m.