protein.info {CHNOSZ}R Documentation

Summaries of Thermodynamic Properties of Proteins

Description

Protein information, length, chemical formula, thermodynamic properties by group additivity, reaction coefficients of basis species, and metastable equilibrium example calculation.

Usage

  pinfo(protein, organism=NULL, residue=FALSE, regexp=FALSE)
  protein.length(protein, organism = NULL)
  protein.formula(protein, organism = NULL, residue = FALSE)
  protein.OBIGT(protein, organism = NULL, state=thermo()$opt$state)
  protein.basis(protein, T = 25, normalize = FALSE)
  protein.equil(protein, T=25, loga.protein = 0, digits = 4)

Arguments

protein

character, names of proteins; numeric, species index of proteins; data frame; amino acid composition of proteins

organism

character, names of organisms

residue

logical, return per-residue values (those of the proteins divided by their lengths)?

regexp

logical, find matches using regular expressions?

normalize

logical, return per-residue values (those of the proteins divided by their lengths)?

state

character, physical state

T

numeric, temperature in °C

loga.protein

numeric, decimal logarithms of reference activities of proteins

digits

integer, number of significant digits (see signif)

Details

For character protein, pinfo returns the rownumber(s) of thermo()$protein that match the protein names. The names can be supplied in the single protein argument (with an underscore, denoting protein_organism) or as pairs of proteins and organisms. NA is returned for any unmatched proteins, including those for which no organism is given or that do not have an underscore in protein.

Alternatively, if regexp is TRUE, the protein argument is used as a pattern (regular expression); rownumbers of all matches of thermo()$protein$protein to this pattern are returned. When using regexp, the organism can optionally be provided to return only those entries that also match thermo()$protein$organism.

For numeric protein, pinfo returns the corresponding row(s) of thermo()$protein. Set residue to TRUE to return the per-residue composition (i.e. amino acid composition of the protein divided by total number of residues).

For dataframe protein, pinfo returns it unchanged, except for possibly the per-residue calculation.

The following functions accept any specification of protein(s) described above for pinfo:

protein.length returns the lengths (number of amino acids) of the proteins.

protein.formula returns a stoichiometrix matrix representing the chemical formulas of the proteins that can be pased to e.g. mass or ZC. The amino acid compositions are multiplied by the output of group.formulas to generate the result.

protein.OBIGT calculates the thermodynamic properties and equations-of-state parameters for the completely nonionized proteins using group additivity with parameters taken from Dick et al., 2006 (aqueous proteins) and LaRowe and Dick, 2012 (crystalline proteins and revised aqueous methionine sidechain group). The return value is a data frame in the same format as thermo()$OBIGT. state indicates the physical state for the parameters used in the calculation (‘⁠aq⁠’ or ‘⁠cr⁠’).

The following functions also depend on an existing definition of the basis species:

protein.basis calculates the numbers of the basis species (i.e. opposite of the coefficients in the formation reactions) that can be combined to form the composition of each of the proteins. The basis species must be present in thermo()$basis, and if ‘⁠H+⁠’ is among the basis species, the ionization states of the proteins are included. The ionization state of the protein is calculated at the pH defined in thermo()$basis and at the temperature specified by the T argument. If normalize is TRUE, the coefficients on the basis species are divided by the lengths of the proteins.

protein.equil produces a series of messages showing step-by-step a calculation of the chemical activities of proteins in metastable equilibrium. For the first protein, it shows the standard Gibbs energies of the reaction to form the nonionized protein from the basis species and of the ionization reaction of the protein (if ‘⁠H+⁠’ is in the basis), then the standard Gibbs energy/RT of the reaction to form the (possibly ionized) protein per residue. The per-residue values of ‘⁠logQstar⁠’ and ‘⁠Astar/RT⁠’ are also shown for the first protein. Equilibrium calculations are then performed, only if more than one protein is specified. This calculation applies the Boltzmann distribution to the calculation of the equilibrium degrees of formation of the residue equivalents of the proteins, then converts them to activities of proteins taking account of loga.protein and protein length. If the protein argument is numeric (indicating rownumbers in thermo()$protein), the values of ‘⁠Astar/RT⁠’ are compared with the output of affinity, and those of the equilibrium degrees of formation of the residues and the chemical activities of the proteins with the output of diagram. If the values in any of these tests are are not all.equal an error is produced indicating a bug.

References

Dick, J. M., LaRowe, D. E. and Helgeson, H. C. (2006) Temperature, pressure, and electrochemical constraints on protein speciation: Group additivity calculation of the standard molal thermodynamic properties of ionized unfolded proteins. Biogeosciences 3, 311–336. doi:10.5194/bg-3-311-2006

LaRowe, D. E. and Dick, J. M. (2012) Calculation of the standard molal thermodynamic properties of crystalline peptides. Geochim. Cosmochim. Acta 80, 70–91. doi:10.1016/j.gca.2011.11.041

Examples


# Search by name in thermo()$protein
# These are the same: ip1 == ip2
ip1 <- pinfo("LYSC_CHICK")
ip2 <- pinfo("LYSC", "CHICK")
# Two organisms with the same protein name
ip3 <- pinfo("MYG", c("HORSE", "PHYCA"))
# Their amino acid compositions
pinfo(ip3)
# Their thermodynamic properties by group additivity
protein.OBIGT(ip3)

# An unknown protein name gives NA
ip4 <- pinfo("MYGPHYCA")

## Example for chicken lysozyme C
# Index in thermo()$protein
ip <- pinfo("LYSC_CHICK")
# Amino acid composition
pinfo(ip)
# Protein length and chemical formula
protein.length(ip)
protein.formula(ip)
# Group additivity for thermodynamic properties and HKF equation-of-state
# parameters of non-ionized protein
protein.OBIGT(ip)
# Calculation of standard thermodynamic properties
# (subcrt uses the species name, not ip)
subcrt("LYSC_CHICK")
# NOTE: subcrt() only shows the properties of the non-ionized
# protein, but affinity() uses the properties of the ionized
# protein if the basis species have H+

## These are all the same
protein.formula("P53_PIG")
protein.formula(pinfo("P53_PIG"))
protein.formula(pinfo(pinfo("P53_PIG")))

[Package CHNOSZ version 2.1.0 Index]