R/getAminoAbbr.R

Defines functions getAminoAbbr

Documented in getAminoAbbr

getAminoAbbr <- function() {
  aminos = c("Alanine", "Arginine", "Asparagine", "Aspartic acid", "Cysteine", "Glutamic acid", 
             "Glutamine", "Glycine", "Histidine", "Isoleucine", "Leucine", "Lysine", 
             "Methionine", "Phenylalanine", "Proline", "Serine", "Threonine", "Tryptophan", 
             "Tyrosine", "Valine", "Stop")
  names(aminos) = c("A", "R", "N", "D", "C", "E", "Q", "G", "H", "I", "L", "K", "M", "F", "P", "S", "T", "W", "Y", "V", "*")
  return(aminos)
}

Try the R453Plus1Toolbox package in your browser

Any scripts or data that you put into this service are public.

R453Plus1Toolbox documentation built on Nov. 8, 2020, 5:59 p.m.