View source: R/prepare_data_from_FASTA.R
get_one_hot_encoded_seqs | R Documentation |
Get the one-hot encoding representation of the given sequences.
get_one_hot_encoded_seqs(seqs, sinuc_or_dinuc = "sinuc")
seqs |
A |
sinuc_or_dinuc |
character string, 'sinuc' or 'dinuc' to select for mono- or dinucleotide profiles. |
A sparse matrix of sequences represented with one-hot-encoding
prepare_data_from_FASTA
for generating one-hot
encoding of sequences from a FASTA file
Other input functions:
prepare_data_from_FASTA()
fname <- system.file("extdata", "example_data.fa.gz",
package = "seqArchR", mustWork = TRUE)
rawSeqs <- prepare_data_from_FASTA(fasta_fname = fname,
raw_seq = TRUE)
seqs_dinuc <- get_one_hot_encoded_seqs(seqs = rawSeqs,
sinuc_or_dinuc = "dinuc")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.