Description Usage Arguments Details Value Author(s) See Also Examples
These functions transform a set of DNA sequences among various internal formats.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
x |
a matrix or a list containing the DNA sequences, or an object
of class |
... |
further arguments to be passed to or from other methods. |
For as.alignment
, the sequences given as argument should be
stored as matrices or lists of single-character strings (the format
used in ape before version 1.10). The returned object is in the
format used in the package seqinr to store aligned sequences.
as.DNAbin
is a generic function with methods so that it works
with sequences stored into vectors, matrices, or lists.
as.character
is a generic function: the present method
converts objects of class "DNAbin"
into the format used
before ape 1.10 (matrix of single characters, or list of vectors
of single characters). This function must be used first to convert
objects of class "DNAbin"
into the class "alignment"
.
an object of class "alignment"
in the case of
"as.alignment"
; an object of class "DNAbin"
in the case
of "as.DNAbin"
; a matrix of mode character or a list containing
vectors of mode character in the case of "as.character"
.
Emmanuel Paradis
DNAbin
, read.dna
,
read.GenBank
, write.dna
1 2 3 4 5 | data(woodmouse)
x <- as.character(woodmouse)
x[, 1:20]
str(as.alignment(x))
identical(as.DNAbin(x), woodmouse)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.