Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.97 KB

README.rst

File metadata and controls

64 lines (42 loc) · 1.97 KB

Resolwe Runtime Utilities

Build Status Coverage Status Documentation Status Version on PyPI Supported Python versions

A project that provides convenience utilities for writing processes for the Resolwe dataflow engine.

You can find more information in the documentation.

Getting started

Install Resolwe Runtime Utilities from PyPI:

pip install resolwe-runtime-utils

Use them in your Python Resolwe process:

from resolwe_runtime_utils import info, save_file

info('Some info')
save_file('etc', 'foo.py')

Or use them in your Bash Resolwe process:

re-info "Some info"
re-save-file "etc" "foo.py"

Contribute

We welcome new contributors. To learn more, read Contributing section of our documentation.