R/def_rna.R
is_rna.Rd
This function returns TRUE for objects of class bioseq_rna
is_rna(x)
An object.
Logical.
x <- c("AGGTGC", "TTCGA") is_rna(x) #> [1] FALSE y <- rna(x) #> Warning: Non-standard IUPAC symbols detected for RNA: 3 characters were converted to N. is_rna(x) #> [1] FALSE