check_kmers | R Documentation |
Checks if the provided set of k-mers is valid. A valid set of k-mers is (1) non-empty, (2) contains either only hexamers or only heptamers, and (3) contains only characters from the RNA alphabet (A, C, G, U)
check_kmers(kmers)
kmers |
set of k-mers |
TRUE
if set of k-mers is valid
Other k-mer functions:
calculate_kmer_enrichment()
,
compute_kmer_enrichment()
,
count_homopolymer_corrected_kmers()
,
create_kmer_origin_list()
,
draw_volcano_plot()
,
estimate_significance()
,
estimate_significance_core()
,
generate_kmers()
,
generate_permuted_enrichments()
,
run_kmer_spma()
,
run_kmer_tsma()
# valid set
check_kmers(c("ACGCUC", "AAACCC", "UUUACA"))
# invalid set (contains hexamers and heptamers)
check_kmers(c("ACGCUC", "AAACCC", "UUUACAA"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.