Learn R Programming

OrgMassSpecR (version 0.5-3)

ExchangeableAmides: Determine the Number of Backbone Amide Hydrogens

Description

Determine the number of backbone amide hydrogens given a protein/peptide sequence. Used in hydrogen-deuterium exchange experiments.

Usage

ExchangeableAmides(sequence)

Arguments

sequence

character vector containing one or more amino acid sequences.

Value

A numeric vector containing the number of exchangeable hydrogens.

Details

The number of backbone amide hydrogens in an amino acid sequence is the number of residues, minus the number of prolines, minus 1.

See Also

IsotopicDistributionHDX

Examples

Run this code
# NOT RUN {
ExchangeableAmides(c("VDVMCTA", "VSTPTL"))

## find the number of exchangeable amides for 
## each peptide in a digest of human serum albumin
x <- Digest(example.sequence, enzyme = "pepsin", IAA = FALSE, missed = 4)
transform(x, exchange = ExchangeableAmides(x$peptide))
# }

Run the code above in your browser using DataLab