dna_phychem | R Documentation |
This function applies the numerical indices representing various physicochemical and biochemical properties of DNA bases. As results, DNA sequences are represented as numerical vectors which can be subject of further downstream statistical analysis and digital signal processing.
dna_phychem(seqs, ...)
## S4 method for signature 'character'
dna_phychem(
seqs,
phychem = list(A = NULL, T = NULL, C = NULL, G = NULL, N = NULL)
)
## S4 method for signature 'DNAStringSet_OR_DNAMultipleAlignment'
dna_phychem(
seqs,
phychem = list(A = NULL, T = NULL, C = NULL, G = NULL, N = NULL),
index_name = NULL,
...
)
seqs |
A character string, a |
... |
Not in use. |
phychem |
A list of DNA bases physicochemical properties, e.g., like those provided in dna_phyche. |
index_name |
Optional. Name of breve description of the base physicochemical property applied to represent the DNA sequence. |
A MatrixSeq-class object.
Robersy Sanchez https://genomaths.com
peptide_phychem_index
## Let's create DNAStringSet-class object
base <- DNAStringSet(x = c( seq1 ='ACGTGATCAAGT',
seq2 = 'GTGTGATCCAGT',
seq3 = 'TCCTGATCAGGT'))
dna_phychem(seqs = base,
phychem = list('A' = 0.87, 'C' = 0.88, 'T' = 0.82,
'G' = 0.89, 'N' = NA),
index_name = "Proton-Affinity")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.