# Tibanna
[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/) [![Build Status](https://travis-ci.org/4dn-dcic/tibanna.svg?branch=master)](https://travis-ci.org/4dn-dcic/tibanna) [![Code Quality](https://api.codacy.com/project/badge/Grade/d2946b5bc0704e5c9a4893426a7e0314)](https://www.codacy.com/app/4dn/tibanna?utm_source=github.com&utm_medium=referral&utm_content=4dn-dcic/tibanna&utm_campaign=Badge_Grade) [![Test Coverage](https://api.codacy.com/project/badge/Coverage/d2946b5bc0704e5c9a4893426a7e0314)](https://www.codacy.com/app/4dn/tibanna?utm_source=github.com&utm_medium=referral&utm_content=4dn-dcic/tibanna&utm_campaign=Badge_Coverage) [![Documentation Status](https://readthedocs.org/projects/tibanna/badge/?version=latest)](https://tibanna.readthedocs.io/en/latest/?badge=latest)
***
Tibanna runs portable pipelines (in CWL/WDL/Snakemake/shell) on the AWS Cloud.
<br>
Install Tibanna.
```bash
pip install tibanna
```
<br>
Use CLI to set up the cloud component and run workflow.
```bash
# Deploy Unicorn to the Cloud (Unicorn = serverless scheduler/resource allocator).
tibanna deploy_unicorn --usergroup=mygroup
# Run CWL/WDL workflow on the Cloud.
tibanna run_workflow --input-json=myrun.json
```
<br>
Alternatively, use Python API.
```python
from tibanna.core import API
# Deploy Unicorn to the Cloud.
API().deploy_unicorn(usergroup='mygroup')
# Run CWL/WDL workflow on the Cloud.
API().run_workflow(input_json='myrun.json')
```
<br>
---
Note: Starting `0.8.2`, Tibanna supports local CWL/WDL files as well as shell commands and Snakemake workflows.
Note 2: As of Tibanna version `2.0.0`, Python 3.7 (and lower) is no longer supported. Please switch to Python 3.11! Python 3.8 is also supported as a fallback, but please prefer 3.11 if you can.
Note 3: Starting `0.8.0`, one no longer needs to `git clone` the Tibanna repo.
* Please switch from `invoke <command>` to `tibanna <command>`!
* We also renovated the Python API as an inheritable class to allow development around tibanna.
For more details, see Tibanna [**Documentation**](http://tibanna.readthedocs.io/en/latest).
* Also check out our [**paper in _Bioinformatics_**](https://doi.org/10.1093/bioinformatics/btz379).
* A preprint can also be found on [**biorxiv**](https://www.biorxiv.org/content/10.1101/440974v3).
Raw data
{
"_id": null,
"home_page": "http://github.com/4dn-dcic/tibanna",
"name": "tibanna",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.13,>=3.8",
"maintainer_email": null,
"keywords": "tibanna",
"author": "4DN-DCIC Team",
"author_email": "support@4dnucleome.org",
"download_url": "https://files.pythonhosted.org/packages/2c/9c/1323ca234cd3284dcfaa17b43bd09ed9c06b433ca76139ddcfd717b705e9/tibanna-5.5.0.tar.gz",
"platform": null,
"description": "# Tibanna\n\n[![Python 3.8](https://img.shields.io/badge/python-3.8-blue.svg)](https://www.python.org/downloads/release/python-380/) [![Build Status](https://travis-ci.org/4dn-dcic/tibanna.svg?branch=master)](https://travis-ci.org/4dn-dcic/tibanna) [![Code Quality](https://api.codacy.com/project/badge/Grade/d2946b5bc0704e5c9a4893426a7e0314)](https://www.codacy.com/app/4dn/tibanna?utm_source=github.com&utm_medium=referral&utm_content=4dn-dcic/tibanna&utm_campaign=Badge_Grade) [![Test Coverage](https://api.codacy.com/project/badge/Coverage/d2946b5bc0704e5c9a4893426a7e0314)](https://www.codacy.com/app/4dn/tibanna?utm_source=github.com&utm_medium=referral&utm_content=4dn-dcic/tibanna&utm_campaign=Badge_Coverage) [![Documentation Status](https://readthedocs.org/projects/tibanna/badge/?version=latest)](https://tibanna.readthedocs.io/en/latest/?badge=latest)\n\n***\n\nTibanna runs portable pipelines (in CWL/WDL/Snakemake/shell) on the AWS Cloud.\n\n<br>\n\nInstall Tibanna.\n```bash\npip install tibanna\n```\n\n<br>\n\nUse CLI to set up the cloud component and run workflow.\n```bash\n# Deploy Unicorn to the Cloud (Unicorn = serverless scheduler/resource allocator).\ntibanna deploy_unicorn --usergroup=mygroup\n\n# Run CWL/WDL workflow on the Cloud.\ntibanna run_workflow --input-json=myrun.json\n```\n\n<br>\n\nAlternatively, use Python API.\n\n```python\nfrom tibanna.core import API\n\n# Deploy Unicorn to the Cloud.\nAPI().deploy_unicorn(usergroup='mygroup')\n\n# Run CWL/WDL workflow on the Cloud.\nAPI().run_workflow(input_json='myrun.json')\n```\n\n<br>\n\n---\nNote: Starting `0.8.2`, Tibanna supports local CWL/WDL files as well as shell commands and Snakemake workflows.\n\nNote 2: As of Tibanna version `2.0.0`, Python 3.7 (and lower) is no longer supported. Please switch to Python 3.11! Python 3.8 is also supported as a fallback, but please prefer 3.11 if you can.\n\nNote 3: Starting `0.8.0`, one no longer needs to `git clone` the Tibanna repo. \n* Please switch from `invoke <command>` to `tibanna <command>`! \n* We also renovated the Python API as an inheritable class to allow development around tibanna.\n\n\nFor more details, see Tibanna [**Documentation**](http://tibanna.readthedocs.io/en/latest).\n* Also check out our [**paper in _Bioinformatics_**](https://doi.org/10.1093/bioinformatics/btz379).\n* A preprint can also be found on [**biorxiv**](https://www.biorxiv.org/content/10.1101/440974v3).\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Tibanna runs portable pipelines (in CWL/WDL) on the AWS Cloud.",
"version": "5.5.0",
"project_urls": {
"Homepage": "http://github.com/4dn-dcic/tibanna",
"Repository": "http://github.com/4dn-dcic/tibanna.git"
},
"split_keywords": [
"tibanna"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "00d983b5bab28f37680967234004278779bc9dbde7abf176bb7be9b14fd4edc2",
"md5": "b4f2a08177558c7bcd3bb94c999f28cd",
"sha256": "1057c0dfc649ce8f41e21944c82cb505238b43e3db94f4be930994c0ec73eda9"
},
"downloads": -1,
"filename": "tibanna-5.5.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b4f2a08177558c7bcd3bb94c999f28cd",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.13,>=3.8",
"size": 108114,
"upload_time": "2024-11-21T16:29:39",
"upload_time_iso_8601": "2024-11-21T16:29:39.067153Z",
"url": "https://files.pythonhosted.org/packages/00/d9/83b5bab28f37680967234004278779bc9dbde7abf176bb7be9b14fd4edc2/tibanna-5.5.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2c9c1323ca234cd3284dcfaa17b43bd09ed9c06b433ca76139ddcfd717b705e9",
"md5": "41a63bc17ff62ef36b4903fef0e9420e",
"sha256": "74ebbd29ae5edfd12de8b9de563a165d2d636497973f2ae51f847a544f77e2db"
},
"downloads": -1,
"filename": "tibanna-5.5.0.tar.gz",
"has_sig": false,
"md5_digest": "41a63bc17ff62ef36b4903fef0e9420e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.13,>=3.8",
"size": 96188,
"upload_time": "2024-11-21T16:29:40",
"upload_time_iso_8601": "2024-11-21T16:29:40.860992Z",
"url": "https://files.pythonhosted.org/packages/2c/9c/1323ca234cd3284dcfaa17b43bd09ed9c06b433ca76139ddcfd717b705e9/tibanna-5.5.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-21 16:29:40",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "4dn-dcic",
"github_project": "tibanna",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "tibanna"
}