Converts amino-acid three-letter code into the one-letter one
This is a vectorized function to convert three-letters amino-acid code into the one-letter one, for instance "Ala" into "A".
a(aa)
aa |
A vector of string. All strings are 3 chars long. |
Allowed character values for aa
are given by aaa()
.
All other values will generate a warning and return NA.
Called without arguments, a()
returns the list of all possible
output values.
A vector of single characters.
D. Charif, J.R. Lobry
The IUPAC one-letter code for aminoacids is described at:
https://www.bioinformatics.org/sms/iupac.htmlcitation("seqinr")
# # Show all possible input values: # aaa() # # Convert them in one letter-code: # a(aaa()) # # Check consistency of results: # stopifnot( aaa(a(aaa())) == aaa()) # # Show what happens with non-allowed values: # a("SOS") # should be NA and a warning is generated
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.