Yet another kmer library for Python
Project description
README - kmerdb
A Python CLI and module for k-mer profiles, similarities, and graph databases
NOTE: This project is in alpha stage. Development is ongoing. But feel free to clone the repository and play with the code for yourself.
Development Status
Summary
KDB is a Python library designed for bioinformatics applications. It addresses the 'k-mer' problem (substrings of length k) in a simple and performant manner. It stores the k-mer counts/abundances and total counts. You can think of the current form as a "pre-index", as it includes all the essential information for indexing on any field in the landscape of k-mer to sequence relationships. One restriction is that k-mers with unspecified sequence residues 'N' create gaps in the k-mer to sequence relationship space, and are excluded. That said, non-standard IUPAC residues are supported.
Please see the Quickstart guide for more information about the format, the library, and the project.
The k-mer spectrum of the fasta or fastq sequencing data is stored in the .kdb
format spec, a bgzf file similar to .bam
. For those familiar with .bam
, a view
and header
functions are provided to decompress a .kdb
file into a standard output stream.
Installation
Dependencies
DESeq2 is required as a R dependency for rpy2-mediated normalization.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("DESeq2")
All other dependencies are managed directly by pip.
OSX and Linux release:
pip install kmerdb
Development installation:
git clone https://github.com/MatthewRalston/kmerdb.git
pip install -e .
Usage Example
NOTE: Usage in detail can be found on the quickstart page
CLI Usage
kmerdb --help
# Build a [composite] profile to a new or existing .kdb file
kmerdb profile -k 8 example1.fq.gz example2.fq.gz profile.8.kdb
# View the raw data
kmerdb view profile.8.kdb # -H for full header
# View the header
kmerdb header profile.8.kdb
# Collate the files
kmerdb matrix -p $cores pass *.8.kdb
# Calculate similarity between two (or more) profiles
kmerdb distance correlation profile1.kdb profile2.kdb (...)
Usage note:
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.
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.
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.
In addition, 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, and the --block-size
parameter in kmerdb profile
is likely going to facilitate your memory overhead by reading chunks of --block-size
reads into memory at once while accumulating the k-mer counts in a uint64
array. 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, but for those of us starting out and trying to put the ecosystem ahead of ego, we march into the information age with this ethos.
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/kdb/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
Thank you to the authors of kPAL and Jellyfish for the early inspiration. And thank you to others for the encouragement along the way, who shall remain nameless. I wanted this library to be a good strategy for assessing these k-mer profiles, in a way that is both cost aware of the analytical tasks at play, capable of storing the exact profiles in sync with the current assemblies, and then updating the kmer databases only when needed to generate enough spectral signature information.
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 has begun under GPL v3.0 and hopefully could gain some interest.
More on the flip-side of this file. Literally. And figuratively. 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.7.6.tar.gz
.
File metadata
- Download URL: kmerdb-0.7.6.tar.gz
- Upload date:
- Size: 220.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5953fac1ebf84174397a3c47b606550b071e287c24c0c7b6405b49cd4d7e0f4a |
|
MD5 | a7f1c57efaa5f3c1866f0351a93a799c |
|
BLAKE2b-256 | 0236f89b55bc3749a85f6b8a4cd415e8b75eb2f13b5660f9be7b334886599ed5 |