Converts biological sequence from number to letter notation.

n2l(seq, seq_type)

Arguments

seq

integer vector or matrix representing single sequence.

seq_type

the type of sequence. Can be rna, dna or prot.

Value

a character vector or matrix containing converted elements.

See also

n2l is a wrapper around degenerate.

Inverse function: l2n.

Examples

sample_seq <- c(1, 3, 3, 6, 1, 6, 12, 1, 10) n2l(sample_seq, "prot")
#> [1] "a" "d" "d" "g" "a" "g" "n" "a" "l"