Skip to content

Abundance Filtering

Adam Taranto edited this page Sep 23, 2024 · 1 revision

Filter KmerCountTable objects on min or max kmer abundance.

# Drop all records with counts > 2
kmer_table.mincut(2)

# Drop all records with counts > 5
kmer_table.maxcut(5)