Utilities for the Terra notebook environment.
Project description
terra-notebook-utils
Python API and CLI providing utilties for working with DRS objects, VCF files, and the Terra notebook environment.
Installation
pip install terra-notebook-utils
Credentials
Much of the terra-notebook-utilities functionality requires credentialed access through a Google Cloud Platform account. Credentials are already available when running in a Terra notebook environment. Otherwise, credentials may be obtained with the command
gcloud auth application-default login
Usage
terra-notebook-utils exposes a Python API, as well as wrappers to execute some functionality on the CLI. The Python
API is best explored with Pythons great help
function. For instance, issuing the follow commands into a Python
interpreter or Jupyter notebook will produce help and usage for the drs
module.
import terra_notebook_utils as tnu
help(tnu.drs)
Similarly, the CLI may be explored using the typical -h
argument. Try the following commands at a bash prompt.
# See the command groups available to the CLI
tnu -h
# See the commands available to the vcf group
tnu vcf -h
# Show your available billing projects
tnu profile list-billing-projects
The DRS API and CLI
terra-notebook-utils provides several methods and CLI commands useful for working with DRS resolved objects:
Python API
Copy drs object to local filesystem or bucket:
from terra_notebook_utils import drs
drs.copy("drs://my-drs-url", "gs://my-dst-bucket/my-dst-key")
drs.copy("drs://my-drs-url", "local_filepath")
CLI
Copy drs object to local or bucket:
tnu drs copy drs://my-drs-url gs://my-dst-bucket/my-dstkey
tnu drs copy drs://my-drs-url local_filepath
The VCF API and CLI
terra-notebook-utils provides some CLI commands useful for getting information about VCF files. These commands work for VCFs stored locally, in a Google Storage bucket, or at a DRS url.
Print VCF header:
tnu vcf head drs://my-vcf
tnu vcf head gs://my-vcf
tnu vcf head my.vcf.gz
Print VCF samples:
tnu vcf samples drs://my-vcf
tnu vcf samples gs://my-vcf
tnu vcf samples my.vcf.gz
Print VCF stats. This command executes quickly, and shows the length and file size of the VCF. If the VCF is compressed, the compressed size is returned.
tnu vcf stats drs://my-vcf
tnu vcf stats gs://my-vcf
tnu vcf stats my.vcf.gz
While a Python API for working with VCFs is currently available, usage is more complex. Please contact the maintainer for more information.
Tests
To run tests,
- log in with your Google credentials using
gcloud auth application-default login
, - install requirements with
pip install -r requirements-dev.txt
, - run
make test
in the package root.
Links
Project home page GitHub
Package distribution PyPI
Bugs
Please report bugs, issues, feature requests, etc. on GitHub.
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 terra-notebook-utils-0.1.0.tar.gz
.
File metadata
- Download URL: terra-notebook-utils-0.1.0.tar.gz
- Upload date:
- Size: 15.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13deb24324e6fcc587545d5ea8dfefc1cf124c1c24bfa25f351298c18a9e5d98 |
|
MD5 | 052a7e64e3804aa4d7eab86c23821be3 |
|
BLAKE2b-256 | adf15515d6775d82cd201589b18a2f02075768df7f1421ac3b9bdbfa1f9f64f4 |