# obikmer `obikmer` is a command-line tool for counting, indexing, querying and comparing DNA sequences represented as kmer sets. It targets individual genome datasets of tens of gigabases, with an emphasis on computational, memory, and disk efficiency. All functionality is exposed through a single binary, `obikmer`, organized as subcommands. ## Core principles - Kmers are of fixed, odd length $k$, chosen at index-construction time in the range $[11, 31]$ (see [Kmers and super-kmers](theory/kmers_and_superkmers.md)). - Each kmer fits in a 64-bit word using a 2-bit-per-base encoding (see [DNA encoding](theory/encoding.md)). - Kmers are handled in **canonical form** ($\text{canonical}(kmer) = \min(kmer, \text{revcomp}(kmer))$), making counting strand-independent. - Sequences are decomposed into **super-kmers** before storage, anchored on a hash-selected **minimizer** (see [Minimizer selection](theory/minimizer_selection.md)), then routed to one of several **partitions** for parallel, memory-bounded processing (see [Partitioning and indexing architecture](theory/indexing_architecture.md)). - Low-complexity kmers can be filtered out at index-construction time using an entropy-based score (see [Low-complexity kmer filter](theory/entropy_filter.md)). ## Commands | Command | Purpose | |---|---| | [`superkmer`](usage/superkmer.md) | Extract super-kmers from a sequence file and write them to stdout | | [`index`](usage/index_command.md) | Build a genome index | | [`merge`](usage/merge.md) | Merge multiple indexes into one | | [`filter`](usage/filter.md) | Retain only kmers matching ingroup/outgroup predicates | | [`select`](usage/select.md) | Project and/or aggregate genome columns of an index | | [`query`](usage/query.md) | Query an index with sequences and annotate matches | | [`dump`](usage/dump.md) | Dump indexed kmers as CSV | | [`annotate`](usage/annotate.md) | Add, update, or dump genome metadata | | [`distance`](usage/distance.md) | Compute pairwise distance matrices and phylogenetic exports | | [`unitig`](usage/unitig.md) | Dump the unitigs of an index as FASTA | | [`estimate`](usage/estimate.md) | Estimate approximate-index parameters before indexing | | [`reindex`](usage/reindex.md) | Convert an index's evidence representation (exact ↔ approximate) | | [`utils`](usage/utils.md) | Miscellaneous index maintenance and inspection utilities | | [`pack`](usage/pack.md) | Pack per-column matrix files into a single-file format | See [Genome predicates and taxonomy paths](usage/predicates.md) for the selection language shared by `filter`, `select`, `dump`, and `unitig`. ## Further reading - [Index construction and on-disk layout](formats/index_layout.md) - [Architecture notes for advanced use](architecture.md) — parallel execution, NUMA awareness, index dimensioning ## Input formats - `superkmer` and `index`: FASTA (`.fa`, `.fasta`), FASTQ (`.fq`, `.fastq`), GenBank flat file (`.gb`, `.gbk`, `.gbff`), all optionally gzip-compressed; directories are expanded recursively; streaming stdin via `-` or when no input path is given. - `query`: FASTA or FASTQ, optionally gzip-compressed; streaming stdin the same way. ## Parameter constraints These constraints are checked at startup; an invalid value exits immediately with an error. | Parameter | Constraint | Reason | |---|---|---| | $k$ (`--kmer-size`) | odd, $k \in [11, 31]$ | odd length guarantees the canonical form is always well defined; the range keeps a kmer within a 64-bit word while retaining specificity | | $m$ (`--minimizer-size`) | odd, $3 \le m \le k-1$ | same palindrome argument as $k$; must be strictly shorter than the kmer | | $z$ (`-z`, approximate evidence only) | $z \le k-1$ | the effective indexed kmer size is $k-z+1$ | ## Genome label constraints Genome labels are arbitrary Unicode strings, with the following restrictions: | Character | Forbidden | Reason | |---|---|---| | `/` | yes | filesystem path separator | | `=` | yes | separator used by `--new-label` | | `\0` | yes | null byte | | `\n`, `\r`, `\t` | yes | would break CSV output | | spaces | allowed | quote in the shell, e.g. `--new-label 'new label=old label'` | Empty labels are rejected. A label derived automatically from the input file name (when `--label` is omitted) is not validated, since it is already filesystem-safe.