Manage data bundled with bioinformatic software through Zenodo DOI integration
Project description
zenodo_backpack
ZenodoBackpack provides a robust, standardised and repeatable approach to distributing and using backend databases that bioinformatic tools rely on. These databases are usually tool-specific and are often large enough in size that they cannot be uploaded as data to software repositories (e.g. PyPI imposes a limit of ~50MB).
ZenodoBackpack uploads/downloads data to/from Zenodo,
which means that each dataset is associated with a DOI. Additionally, it
encapsulates the uploaded data in a Zenodo Backpack format, which is really just
a CONTENTS.json
file and compresses the data in .tar.gz
format before
upload. The CONTENTS.json
file includes md5sum values for each included file
for robust verification.
It contains two main methods, which can be accessed through the
zenodo_backpack
script or accessed as a software library:
create: turns a target directory into a zenodo_backpack-formatted .tar.gz archive with relevant checksum and version information, ready to be uploaded to Zenodo. It is necessary to provide a data version when doing so - furthermore, when uploading this backpack to zenodo.org, the version specified on the website must match that provided when the ZenodoBackpack was created. This allows version tracking and version validation of the data contained within the ZenodoBackpack.
download_and_extract: takes a DOI string to download, extract and verify a zenodo_backpack archive from Zenodo.org to target directory. This returns a ZenodoBackpack object that can be queried for information.
Usage
Command line
You can run zenodo_backpack as a stand-alone program, or import its classes and use them in source code.
In command line, zenodo_backpack can create an archive to be uploaded to Zenodo:
zenodo_backpack create --input_directory <./INPUT_DIRECTORY> --data_version <VERSION> --output_file <./ARCHIVE.tar.gz>
NOTE: it is important that when entering metadata on Zenodo, the version specified MUST match that supplied with --data_version
An uploaded existing zenodo_backpack can be downloaded (--bar if a graphical progress bar is desired) and unpacked as follows:
zenodo_backpack download --doi <MY.DOI/111> --output_directory <OUTPUT_DIRECTORY> --bar
API Usage
You can also import zenodo_backpack as a module:
import zenodo_backpack
Backpacks can be created, downloaded and acquired from a local store:
Create a backpack
Create a new backpack in .tar.gz
format containing the payload data folder:
creator = zenodo_backpack.ZenodoBackpackCreator()
creator.create("/path/to/payload_directory", "path/to/archive.tar.gz", "0.1")
Download a backpack
Download a backpack from Zenodo, defined by the DOI. The version is optional, and if not provided, the latest version will be downloaded.:
backpack_downloader = zenodo_backpack.ZenodoBackpackDownloader()
backpack = backpack_downloader.download_and_extract('/path/to/download_directory', 'MY.DOI/111111', version='MY.VERSION')
Read a backpack that is already downloaded
Defined by a path
backpack = zenodo_backpack.acquire(path='/path/to/zenodobackpack/', md5sum=True)
or by environment variable
backpack = zenodo_backpack.acquire(env_var_name='MY_PROGRAM_DB', version="1.5.2")
Working with a backpack
The ZenodoBackpack
object returned by acquire
and download_and_extract
has instance methods to get at the downloaded data. For example, it can return the path to the payload directory within the ZenodoBackpack
containing all the payload data:
useful_data_path = zenodo_backpack.acquire(env_var_name='MyZenodoBackpack', version="1.5.2").payload_directory_string()
Installation
zenodo_backpack can be installed from pypi:
pip install zenodo-backpack
The easiest way to install is using conda:
conda install -c conda-forge zenodo_backpack
Alternatively, you can git clone the repository and either run the bin/zenodo_backpack executable or install it with setup tools using
python setup.py install
zenodo_backpack relies on requests and tqdm to display an optional graphical progress bar.
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 zenodo_backpack-0.3.0.tar.gz
.
File metadata
- Download URL: zenodo_backpack-0.3.0.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 577f66dbe59512f31dab7d5d61a2f65c6a7e8e91a8cf57a2d02e3d2ebe091c6d |
|
MD5 | 2b9e107e6487f9e9226da86ffecc3557 |
|
BLAKE2b-256 | 421cb1452ded9a1dd37aa92ddaee9419ded3afcd9f0989c0fc860ceb5a6f88eb |
File details
Details for the file zenodo_backpack-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: zenodo_backpack-0.3.0-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c3f7e26d846109492fad373a7d146fa8cc42cedb6e659b965368a45215657e4 |
|
MD5 | faf2fdef68fb1000ac036890f913f58d |
|
BLAKE2b-256 | d00ffd81bf7cb64780a1c6fc3d338054d4cfafc77459ac7c0fe949d0b898ad47 |