No project description provided
Project description
Snk
Documentation: https://snk.wytamma.com
Source Code: https://github.com/Wytamma/snk
Snk (pronounced snek) is a Snakemake workflow management system. Snk allows you to install Snakemake workflows as dynamically generated Command Line Interfaces (via snk-cli). Using a workflow as a CLI increases its interoperability and allows complex workflows to be used as modular components in a larger system.
Installation
pip install snk
Basic Use
Install a workflow as a CLI
The snk install command can be use to install Snakemake workflows as CLIs. Snk can install Snakemake workflows from GitHub repos or local paths. An index of publicly available Snakemake workflows can be found on the snakemake workflow catalog.
Install the dna-seq-gatk-variant-calling workflow (v2.1.1) as variant-calling
.
snk install snakemake-workflows/dna-seq-gatk-variant-calling --name variant-calling -t v2.1.1
Successfully installed variant-calling (v2.1.1)!
Inspect the CLI
Snk will automatically create a fully featured CLI for the Snakemake workflow using snk-cli.
variant-calling --help
View run options
Workflow configuration options are automatically generated from the snakemake config file.
variant-calling run --help
Create a DAG
Here we use the .test
resources included in the workflow to create the DAG.
variant-calling run -r .test/config -r .test/data --dag dag.pdf
Configure
Snk will dynamically generate config options for the CLI. For example if the config.yaml file has the option fasta: null
you can set this option with --fasta
.
variant-calling run --fasta example.fa
You can also configure the workflow using a config file.
variant-calling config --pretty # print the config
variant-calling config > config.yml # save the config
variant-calling run --config config.yml # run with config
Manage Installed Workflows
You can list installed workflows with snk list
and uninstall them with snk uninstall
.
snk list
Workflow | Version |
---|---|
variant-calling | v2.1.1 |
snk uninstall variant-calling
Successfully uninstalled variant-calling!
Documentation
Read the documentation for more information.
License
snk
is distributed under the terms of the MIT license.
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
Built Distribution
File details
Details for the file snk-0.26.0.tar.gz
.
File metadata
- Download URL: snk-0.26.0.tar.gz
- Upload date:
- Size: 56.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fdd5027697731b0762929311b4ae89ce64bc977ea4f375fd5fefa7d8c88e767 |
|
MD5 | 0d1d54e370f8d09ad05a5582b4db02a9 |
|
BLAKE2b-256 | 9b1fa16fe11ce5bb5b36e829ac996aa8511298534f29acc2fe7346fe04117629 |
Provenance
File details
Details for the file snk-0.26.0-py3-none-any.whl
.
File metadata
- Download URL: snk-0.26.0-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-httpx/0.27.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2c10f3cd3754f5220b60ff683ab27c758258a1e6455b86572f41e3ff7a32d3b |
|
MD5 | fab4bf1250cf893a52dc559ef90936b7 |
|
BLAKE2b-256 | 99c1f586b73593d69de56dcf4a579e91787a38a5b62ab4d04776942a47e2083a |