Collection of scripts and tools for MGnify pipelines
Project description
mgnify-pipelines-toolkit
This Python package contains a collection of scripts and tools for including in MGnify pipelines. Scripts stored here are mainly for:
- One-off production scripts that perform specific tasks in pipelines
- Scripts that have few dependencies
- Scripts that don't have existing containers built to run them
- Scripts for which building an entire container would be too bulky of a solution to deploy in pipelines
This package is built and uploaded to PyPi and bioconda. The package bundles scripts and makes them executable from the command-line when this package is installed.
How to install
This package is available both on PyPi and bioconda.
To install from PyPi with pip:
pip install mgnify-pipelines-toolkit
To install from bioconda with conda/mamba:
conda install -c bioconda mgnify-pipelines-toolkit
You should then be able to run the packages from the command-line. For example to run the get_subunits.py
script:
get_subunits -i ${easel_coords} -n ${meta.id}
Adding a new script to the package
Local development requirements
Before starting any development, you should do these few steps:
- Clone the repo if you haven't already and create a feature branch from the
dev
branch (NOTmain
). - Create a virtual environment with the tool of your choice (i.e.
conda create --name my_new_env
) - Activate you new environment (i.e.
conda activate my_new_env
) - Install dev dependencies
pip install -e '.[dev]'
- Install pre-commit hooks
pre-commit install
When doing these steps above, you ensure that the code you add will be linted and formatted properly.
New script requirements
There are a few requirements for your script:
- It needs to have a named main function of some kind. See
mgnify_pipelines_toolkit/analysis/shared/get_subunits.py
and themain()
function for an example - Because this package is meant to be run from the command-line, make sure your script can easily pass arguments using tools like
argparse
orclick
- A small amount of dependencies. This requirement is subjective, but for example if your script only requires a handful of basic packages like
Biopython
,numpy
,pandas
, etc., then it's fine. However if the script has a more extensive list of dependencies, a container is probably a better fit.
How to add a new script
To add a new Python script, first copy it over to the mgnify_pipelines_toolkit
directory in this repository, specifically to the subdirectory that makes the most sense. If none of the subdirectories make sense for your script, create a new one. If your script doesn't have a main()
type function yet, write one.
Then, open pyproject.toml
as you will need to add some bits. First, add any missing dependencies (include the version) to the dependencies
field.
Then, if you created a new subdirectory to add your script in, go to the packages
line under [tool.setuptools]
and add the new subdirectory following the same syntax.
Then, scroll down to the [project.scripts]
line. Here, you will create an alias command for running your script from the command-line. In the example line:
get_subunits = "mgnify_pipelines_toolkit.analysis.shared.get_subunits:main"
get_subunits
is the aliasmgnify_pipelines_toolkit.analysis.shared.get_subunits
will link the alias to the script with the pathmgnify_pipelines_toolkit/analysis/shared/get_subunits.py
:main
will specifically call the function namedmain()
when the alias is run.
When you have setup this command, executing get_subunits
on the command-line will be the equivalent of doing:
from mgnify_pipelines_toolkit.analysis.shared.get_subunits import main; main()
You should then write at least one unit test for your addition. This package uses pytest
at the moment for this purpose. A GitHub Action workflow will run all of the unit tests whenever a commit is pushed to any branch.
Finally, you will need to bump up the version in the version
line.
At the moment, these should be the only steps required to setup your script in this package (which is subject to change).
Building and uploading to PyPi
The building and pushing of the package is automated by GitHub Actions, which will activate only on a new release. Bioconda should then automatically pick up the new PyPi release and push it to their recipes, though it's worth keeping an eye on their automated pull requests just in case here.
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 mgnify_pipelines_toolkit-0.1.8.tar.gz
.
File metadata
- Download URL: mgnify_pipelines_toolkit-0.1.8.tar.gz
- Upload date:
- Size: 34.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57c299db9d80ab66c343d53a12382871eb166cf5e55470197ff4447fb7f93e78 |
|
MD5 | 4bda226e76b2d456b0c7048c8adad528 |
|
BLAKE2b-256 | 880a006fe1047af4e2c0e69aa20f69051e6995e8b774b05f6f6b4e40b3219f8f |
File details
Details for the file mgnify_pipelines_toolkit-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: mgnify_pipelines_toolkit-0.1.8-py3-none-any.whl
- Upload date:
- Size: 53.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 793aa0dfd7e2a3472bf6db3c0d773fe582daf15c65f204fad8852ddb51ad5bec |
|
MD5 | ecc56de0e4f1fa64aba43da3d80b7253 |
|
BLAKE2b-256 | 30fa9828d400db08f09119dcf81e13fe038a29bebc8aee35aafe9e75e47f41a0 |