matrices | R Documentation |
Extract the Coordinate Representation from DNA Sequences on Specified Abelian Group.
matrices(x, ...)
## S4 method for signature 'MatrixList'
matrices(x)
## S4 method for signature 'CodonSeq'
matrices(x)
## S4 method for signature 'DNAStringSet_OR_NULL'
matrices(
x,
base_seq = TRUE,
filepath = NULL,
cube = "ACGT",
group = c("Z4", "Z5", "Z64", "Z125", "Z4^3", "Z5^3"),
start = NA,
end = NA,
chr = 1L,
strand = "+"
)
x |
An object from a |
... |
Not in use. |
base_seq |
Logical. Whether to return the base or codon coordinates on the selected Abelian group. If codon coordinates are requested, then the number of the DNA bases in the given sequences must be multiple of 3. |
filepath |
A character vector containing the path to a file in fasta format to be read. This argument must be given if codon & base arguments are not provided. |
cube |
A character string denoting one of the 24 Genetic-code cubes, as given in references (2-3). |
group |
A character string denoting the group representation for the given base or codon as shown in reference (1). |
start , end , chr , strand |
Optional parameters required to build a
|
These are alternative ways to get the list of matrices of base/codon
coordinate and the information on the codon sequence from
CodonSeq
and MatrixList
class objects. These
functions can either take the output from functions base_coord
and matrices
or to operate directly on a
DNAStringSet
or to retrieve the a DNA sequence
alignment from a file.
base_seq parameter will determine whether to return the
matrices of coordinate for a DNA or codon sequence. While in function
seqranges
, granges parameter will determine
whether to return a GRanges-class
object or a
DataFrame
.
The a list of vectors (group = c("Z4", "Z5", "Z64", "Z125") or a list of matrices (group = ("Z4^3", "Z5^3")) carrying the coordinate representation on the specified Abelian group.
Robersy Sanchez https://genomaths.com
Robersy Sanchez, Jesus Barreto (2021) Genomic Abelian Finite Groups. doi: 10.1101/2021.06.01.446543
M. V Jose, E.R. Morgado, R. Sanchez, T. Govezensky, The 24 possible algebraic representations of the standard genetic code in six or in three dimensions, Adv. Stud. Biol. 4 (2012) 119-152.PDF.
R. Sanchez. Symmetric Group of the Genetic-Code Cubes. Effect of the Genetic-Code Architecture on the Evolutionary Process MATCH Commun. Math. Comput. Chem. 79 (2018) 527-560.
Symmetric Group of the Genetic-Code Cubes.
## Load a pairwise alignment
data("aln", package = "GenomAutomorphism")
aln
## Coordinate representation of the aligned sequences on "Z4".
## A list of vectors
matrices(
x = aln,
base_seq = TRUE,
filepath = NULL,
cube = "ACGT",
group = "Z4",
)
## Coordinate representation of the aligned sequences on "Z4".
## A list of matrices
matrices(
x = aln,
base_seq = FALSE,
filepath = NULL,
cube = "ACGT",
group = "Z5^3",
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.