isValidAASeq | R Documentation |
isValidAASeq
checks that a set of sequences are valid non-ambiguous
amino acid sequences. A sequence is considered valid if it contains only
characters in the the non-ambiguous IUPAC character set or any characters in
c("X", ".", "-", "*")
.
isValidAASeq(seq)
seq |
character vector of sequences to check. |
A logical vector with TRUE
for each valid amino acid sequences
and FALSE
for each invalid sequence.
See ABBREV_AA for the set of non-ambiguous amino acid characters. See IUPAC_AA for the full set of ambiguous amino acid characters.
seq <- c("CARDRSTPWRRGIASTTVRTSW", "XXTQMYVR--XX", "CARJ", "10")
isValidAASeq(seq)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.