All Projects → dib-lab → Sourmash

dib-lab / Sourmash

Licence: other
Quickly search, compare, and analyze genomic and metagenomic data sets.

Programming Languages

python
139335 projects - #7 most used programming language
rust
11053 projects

Projects that are alternatives of or similar to Sourmash

Seqan3
The modern C++ library for sequence analysis. Contains version 3 of the library and API docs.
Stars: ✭ 192 (-18.99%)
Mutual labels:  bioinformatics
Awesome Cancer Variant Databases
A community-maintained repository of cancer clinical knowledge bases and databases focused on cancer variants.
Stars: ✭ 212 (-10.55%)
Mutual labels:  bioinformatics
Bowtie
An ultrafast memory-efficient short read aligner
Stars: ✭ 221 (-6.75%)
Mutual labels:  bioinformatics
Deepvariant
DeepVariant is an analysis pipeline that uses a deep neural network to call genetic variants from next-generation DNA sequencing data.
Stars: ✭ 2,404 (+914.35%)
Mutual labels:  bioinformatics
Allensdk
code for reading and processing Allen Institute for Brain Science data
Stars: ✭ 200 (-15.61%)
Mutual labels:  bioinformatics
Bedops
🔬 BEDOPS: high-performance genomic feature operations
Stars: ✭ 215 (-9.28%)
Mutual labels:  bioinformatics
Genometools
GenomeTools genome analysis system.
Stars: ✭ 186 (-21.52%)
Mutual labels:  bioinformatics
Deep learning examples
Examples of using deep learning in Bioinformatics
Stars: ✭ 234 (-1.27%)
Mutual labels:  bioinformatics
Minigraph
Proof-of-concept seq-to-graph mapper and graph generator
Stars: ✭ 206 (-13.08%)
Mutual labels:  bioinformatics
Abyss
🔬 Assemble large genomes using short reads
Stars: ✭ 219 (-7.59%)
Mutual labels:  bioinformatics
Dgl Lifesci
Python package for graph neural networks in chemistry and biology
Stars: ✭ 194 (-18.14%)
Mutual labels:  bioinformatics
Sequenceserver
Intuitive local web frontend for the BLAST bioinformatics tool
Stars: ✭ 198 (-16.46%)
Mutual labels:  bioinformatics
React Cytoscapejs
React component for Cytoscape.js network visualisations
Stars: ✭ 217 (-8.44%)
Mutual labels:  bioinformatics
Raxml Ng
RAxML Next Generation: faster, easier-to-use and more flexible
Stars: ✭ 191 (-19.41%)
Mutual labels:  bioinformatics
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (+6478.9%)
Mutual labels:  bioinformatics
Karyoploter
karyoploteR - An R/Bioconductor package to plot arbitrary data along the genome
Stars: ✭ 192 (-18.99%)
Mutual labels:  bioinformatics
Awosome Bioinformatics
A curated list of resources for learning bioinformatics.
Stars: ✭ 214 (-9.7%)
Mutual labels:  bioinformatics
Homebrew Bio
🍺🔬 Bioinformatics formulae for the Homebrew package manager (macOS and Linux)
Stars: ✭ 237 (+0%)
Mutual labels:  bioinformatics
Hh Suite
Remote protein homology detection suite.
Stars: ✭ 230 (-2.95%)
Mutual labels:  bioinformatics
Miniasm
Ultrafast de novo assembly for long noisy reads (though having no consensus step)
Stars: ✭ 216 (-8.86%)
Mutual labels:  bioinformatics

sourmash

Quickly search, compare, and analyze genomic and metagenomic data sets.

Documentation Build Status Bioconda install PyPI codecov DOI License: 3-Clause BSD

Usage:

sourmash sketch dna *.fq.gz
sourmash compare *.sig -o distances.cmp -k 31
sourmash plot distances.cmp

sourmash 1.0 is published on JOSS; please cite that paper if you use sourmash (doi: 10.21105/joss.00027):.

The latest major release is sourmash v4, which has several command-line and Python incompatibilities with previous versions. Please visit our migration guide to upgrade!


The name is a riff off of Mash, combined with @ctb's love of whiskey. (Sour mash is used in making whiskey.)

Primary authors: C. Titus Brown (@ctb) and Luiz C. Irber, Jr (@luizirber).

sourmash was initially developed by the Lab for Data-Intensive Biology at the UC Davis School of Veterinary Medicine, and now includes contributions from the global research and developer community.

Installation

We recommend using bioconda to install sourmash:

conda install -c conda-forge -c bioconda sourmash

This will install the latest stable version of sourmash 4.

You can also use pip to install sourmash:

pip install sourmash

A quickstart tutorial is available.

Requirements

sourmash runs under Python 3.7 and later. The base requirements are screed, cffi, numpy, matplotlib, and scipy. Conda (see below) will install everything necessary, and is our recommended installation method.

Installation with conda

Bioconda is a channel for the conda package manager with a focus on bioinformatics software. After installing conda, you can install sourmash by running:

$ conda create -n sourmash_env -c conda-forge -c bioconda sourmash python=3.7
$ source activate sourmash_env
$ sourmash --help

which will install the latest released version.

Support

Please ask questions and files issues on Github.

Development

Development happens on github at dib-lab/sourmash.

sourmash is developed in Python and Rust, and you will need a Rust environment to build it; see the developer notes for our suggested development setup.

After installation, sourmash is the main command-line entry point; run it with python -m sourmash, or do pip install -e /path/to/repo to do a developer install in a virtual environment.

The sourmash/ directory contains the Python library and command-line interface code.

The src/core/ directory contains the Rust library implementing core functionality.

Tests require py.test and can be run with make test.

Please see the developer notes for more information on getting set up with a development environment.


CTB Feb 2021

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].