create_kmer_origin_list | R Documentation |
Counts occurrences of k-mers of length k
in the given
set of sequences. A list of the sequences the k-mer originated
from is created and returned. If the k-mer does not exist in
any of the sequences, the list is empty for that k-mer.
create_kmer_origin_list(sequences, k)
sequences |
character vector of DNA or RNA sequences that constitute the whole set of sequences being analyzed |
k |
number of characters in k-mer |
A list with k-mers as the identifier and a vector of sequences for each k-mer that the k-mer is found in
Other k-mer functions:
calculate_kmer_enrichment()
,
check_kmers()
,
compute_kmer_enrichment()
,
count_homopolymer_corrected_kmers()
,
draw_volcano_plot()
,
estimate_significance()
,
estimate_significance_core()
,
generate_kmers()
,
generate_permuted_enrichments()
,
run_kmer_spma()
,
run_kmer_tsma()
# define simple sequence sets for foreground and background
sequence_set <- c(
"CAACAGCCUUAAUU", "CAGUCAAGACUCC", "CUUUGGGGAAU",
"UCAUUUUAUUAAA", "AAUUGGUGUCUGGAUACUUCCCUGUACAU",
"AUCAAAUUA", "AGAU", "GACACUUAAAGAUCCU",
"UAGCAUUAACUUAAUG", "AUGGA", "GAAGAGUGCUCA",
"AUAGAC", "AGUUC", "CCAGUAA"
)
kmer_origin_list <- create_kmer_origin_list(sequence_set, k = 6)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.