Yet another correction to the 'yet another correction to just a k-mer counter...'
Project description
README - kmerdb
Python CLI and module for k-mer profiles, similarities, and graph files
NOTE: Beta-stage .bgzf
and zlib
compatible k-mer count vectors and DeBruijn graph edge-list formats.
Development Status
Summary
- [ x ] Homepage:
- [ x ] Quixart
- [ x ] Readme headr
- [ x ] OR
- [ x ] usage / off
- [
k-mer counts from .fa(.gz)/.fq(.gz) sequence data can be stored in .kdb
file format, a bgzf file similar to .bam
. For those familiar with .bam
, a view
and header
functions are provided. This file is compatible with zlib
.
Install with pip install kmerdb
kmerdb
is a Python CLI designed for k-mer counting and k-mer graph edge-lists. It addresses the 'k-mer' problem (substrings of length k) in a simple and performant manner. It stores the k-mer counts in a columnar format (input checksums, total and unique k-mer counts, nullomers, mononucleotide counts) with a YAML formatted metadata header in the first block of a bgzf
formatted file.
Please see the Quickstart guide for more information about the format, the library, and the project.
Usage
# Usage --help option --debug mode
kmerdb --help # [+ --debug mode]
kmerdb usage graph
****
o-O |||
o---O ||| [|[ kmerdb ]|]
O---o |||
O-o ||| version : v0.8.2
O |||
o-O ||| GitHub : https://github.com/MatthewRalston/kmerdb/issues
o---O ||| PyPI : https://pypi.org/project/kmerdb/
O---o ||| Website : https://matthewralston.github.io/kmerdb
O-o |||
lang : python
v : >= v3.7.4
package manger : pip
version : >= 24.0
package root : /home/user/.local/share/virtualenvs/kdb-venv/lib/python3.12/site-packages/kmerdb
exe file : /home/user/.local/share/virtualenvs/kdb-venv/lib/python3.12/site-packages/kmerdb/__init__.py
required packages : 9
development packages : 9
ARGV : ['/home/user/.local/share/virtualenvs/kdb-venv/bin/kmerdb', 'usage', 'graph']
O---o
O-o
O
o-O
o---O
O---o
O-o
O
o-O
o---O
O---o
O-o
O
o-O
o---O
Beginning program...
[ name ] : graph
description : create a edge list in (block) .gz format from .fasta|.fa or .fastq format.
: 4 column output : [ row idx | k-mer id node #1 | k-mer id node #2 | edge weight (adjacency count) ]
: make a deBruijn graph, count the number of k-mer adjacencies, printing the edge list to STDOUT
+=============+====================+====================+=================================+
< row idx | k-mer id node #1 | k-mer id node #2 | edge weight (adjacency count) >
| | | | |
| +
|
|
|
|
|
--------------------------
kmerdb graph -k 12 input_1.fa [example_2.fastq] output.12.kdbg
[-] inputs :
Input file can .fastq (or .fa). - gzip. Output is a weighted edge list in .kdb format (gzipped .csv with YAML header)
[-] parameters :
uses < -k > for k-mer size, --quiet to reduce runtime, -v, -vv to control logging. --
[-] [ usage ] : kmerdb graph -k $K --quiet <input_1.fa.gz> [input_2.fq.gz] <output_edge_list_file.12.kdbg>
name: arguments
type: array
items:
- name: k
type: int
value: choice of k-mer size
- name: quiet
type: flag
value: Write additional debug level information to stderr?
name: inputs
type: array
items:
- name: <.fasta|.fastq>
type: array
value: gzipped or uncompressed input .fasta or .fastq file(s)
- name: .kdbg
type: file
value: Output edge-list filepath.
name: features
type: array
items:
- name: k-mer count arrays, linear, produced as file is read through sliding window.
(Un)compressed support for .fa/.fq.
shortname: parallel faux-OP sliding window k-mer shredding
description: Sequential k-mers from the input .fq|.fa files are added to the De
Bruijn graph. In the case of secondary+ sequences in the .fa or considering NGS
(.fq) data, non-adjacent k-mers are pruned with a warning. Summary statistics
for the entire file are given for each file read, + a transparent data structure.
- name: k-mer neighbors assessed and tallied, creates a unsorted edge list, with weights
shortname: weighted undirected graph
description: an edge list of a De Bruijn graph is generated from all k-mers in the
forward direction of .fa/.fq sequences/reads. i.e. only truly neighboring k-mers
in the sequence data are added to the tally of the k-mer nodes of the de Bruijn
graph and the edges provided by the data.
...
# +
# [ 3 main features: ] k-mer counts (kmerdb profile -k 12 <input.fa|.fq> [<input.fa|.fq>]) 'De Bruijn' graph (kmerdb graph) [matrices, distances, and clustering!]
# Create a [composite] profile of k-mer counts from sequence files. (.fasta|.fastq|.fa.gz|.fq.gz)
kmerdb profile -k 8 --output-name sample_1 sample_1_rep1.fq.gz [sample_1_rep2.fq.gz]
# Creates sample_1.8.kdb. --minK and --maxK options can be specified to create multiple k-mer profiles at once.
# Alternatively, can also take a plain-text samplesheet.txt with one filepath on each line.
# Build a weighted edge list (+ node ids/counts = De Bruijn graph)
kmerdb graph -k 12 example_1.fq.gz example_2.fq.gz edges_1.kdbg
# View k-mer count vector
kmerdb view profile_1.8.kdb # -H for full header
# Note: zlib compatibility
#zcat profile_1.8.kdb
# View header (config.py[kdb_metadata_schema#L84])
kmerdb header profile_1.8.kdb
## Optional normalization, dim reduction, and distance matrix features:
# K-mer count matrix - Cython Pearson coefficient of correlation [ ssxy/sqrt(ssxx*ssyy) ]
kmerdb matrix pass *.8.kdb | kmerdb distance pearson STDIN
#
# kmerdb matrix DESeq2 *.8.kdb
# kmerdb matrix PCA *.8.kdb
# kmerdb matrix tSNE *.8.kdb
# # <pass> just makes a k-mer count matrix from k-mer count vectors.
#
# Distances on count matrices [ SciPy ] pdists + [ Cython ] Pearson correlation, scipy Spearman and scipy correlation pdist calculations are available ]
kmerdb distance -h
#
#
# usage: kmerdb distance [-h] [-v] [--debug] [-l LOG_FILE] [--output-delimiter OUTPUT_DELIMITER] [-p PARALLEL] [--column-names COLUMN_NAMES] [--delimiter DELIMITER] [-k K]
# {braycurtis,canberra,chebyshev,cityblock,correlation,cosine,dice,euclidean,hamming,jaccard,jensenshannon,kulsinski,mahalanobis,matching,minkowski,pearson,rogerstanimotorusselrao,seuclidean,sokalmichener,sokalsneath,spearman,sqeuclidean,yule} [<kdbfile1 kdbfile2 ...|input.tsv|STDIN> ...]
# +
# Kmeans (sklearn, BioPython)
kmerdb kmeans -k 4 -i dist.tsv
# BioPython Phylip tree + upgma
kmerdb hierarchical -i dist.tsv
Usage example
Installation
OSX and Linux release:
pip install kmerdb
Optional DESeq2 normalization
DESeq2 is an optional R dependency for rpy2-mediated normalization. Make sure development libraries are installed from the repository.
pip install -r requirements-dev.txt
Next, install DESeq2 via bioconductor.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("DESeq2")
IUPAC support:
kmerdb profile -k $k input.fa output.kdb # This may discard non-IUPAC characters, this feature lacks documentation!
IUPAC residues (ATCG+RYSWKM+BDHV) are kept throughout the k-mer counting. But non-IUPAC residues (N) and characters are trimmed from the sequences prior to k-mer counting. Non-standard IUPAC residues are counted as doublets or triplets.
Documentation
Check out the main webpage and the Readthedocs documentation, with examples and descriptions of the module usage.
Important features to usage that may be important may not be fully documented as the project is in beta.
For example, the IUPAC treatment is largely custom, and does the sensible thing when ambiguous bases are found in fasta files, but it could use some polishing. For example, the 'N
' residue rejection creates gaps in the k-mer profile from the real dataset by admittedly ommitting certain k-mer counts.
This is one method for counting k-mers and handling ambiguity. Fork it and play with it a bit.
Also, the parallel handling may not always be smooth, if you're trying to load dozens of 12+ mer profiles into memory. This would especially matter in the matrix command, before the matrix is generated. You can use single-core if your machine can't collate that much into main memory at once, depending on how deep the fastq dataset is. Even when handling small-ish k-mer profiles, you may bump into memory overheads rather quickly.
Besides that, I'd suggest reading the source, the differente elements of the main page or the RTD documentation.
Development
https://matthewralston.github.io/kmerdb/developing
python setup.py test
License
Created by Matthew Ralston - Scientist, Programmer, Musician - Email
Distributed under the Apache license. See LICENSE.txt
for the copy distributed with this project. Open source software is not for everyone, and im the author and maintainer. cheers, on me. You may use and distribute this software, gratis, so long as the original LICENSE.txt is distributed along with the software. This software is distributed AS IS and provides no warranties of any kind.
Copyright 2020 Matthew Ralston
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Contributing
- Fork it (https://github.com/MatthewRalston/kmerdb/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request
Acknowledgements
Thanks mom and dad and my hometown, awesome hs, and the University of Delaware faculty for support and encouragement. Thanks to my former mentors, bosses, and coworkers. It's been really enjoyable anticipating what the metagenomics community might want from a tool that can handle microbial k-mers well.
Thank you to the authors of kPAL and Jellyfish for the inspiration and bit shifting trick. And thank you to others for the encouragement along the way, who shall remain nameless.
The intention is that more developers would want to add functionality to the codebase or even just utilize things downstream, but to build out directly with numpy and scipy/scikit as needed to suggest the basic infrastructure for the ML problems and modeling approaches that could be applied to such datasets. This project began under GPL v3.0 and was relicensed with Apache v2. Hopefully this project could gain some interest. I have so much fun working on this project. There's more to it than meets the eye. I'm working on a preprint, and the draft is included in some of the latest versions of the codebase, specifically .Rmd files.
More on the flip-side. It's so complex with technology these days...
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file kmerdb-0.8.4.tar.gz
.
File metadata
- Download URL: kmerdb-0.8.4.tar.gz
- Upload date:
- Size: 266.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3e83c4274baca394ca649ee895e000f64408c0c32de126772c9f57908dc0005 |
|
MD5 | 5db2a8b37a25c39c7fb33d9d602e7521 |
|
BLAKE2b-256 | 1f24ed71eb82ae78da71b60afa058c487241ad2b454ac4e0ef2f7fb6f4871860 |