-
Notifications
You must be signed in to change notification settings - Fork 0
Attributes
Adam Taranto edited this page Sep 23, 2024
·
3 revisions
This section describes the attributes of KmerCountTable
objects.
- oxli version:
kct.version
- Total number of based consumed in table:
kct.consumed
- Total number of kmers counted:
kct.sum_counts
- All hash keys in table:
kct.hashes
- Number of records (hashes) in table:
len(kct)
- Smallest kmer count:
kct.min
- Highest kmer count:
kct.max
print(f"Count table created with oxli version: {kct.version}")
print(f"Total based consumed by table: {kct.consumed}")
print(f"Total number of kmers counted: {kct.sum_counts}")
print(f"All kmer hashes: {kct.hashes}")
print(f"Total number of distinct kmers: {len(kct)}")
print(f"Minimum kmer frequency: {kct.min}")
print(f"Maximum kmer frequency: {kct.max}")
Installing Oxli
Basic Setup
For Developers
Getting Started
Getting Started
Counting Kmers
Basic Counting
Extracting from Files
Handling Bad Kmers
Looking up Counts
Single Kmer Lookup
Multiple Kmer Lookup
Removing Records Remove Kmers Abundance Filtering
Exploring Count Tables
Iterating Records
Attributes
Set Operations
Basic SetOps
Exporting Data
Histo: Export Frequency Counts
Dump: Write Hash:Count Pairs
Save and Load KmerCountTables