Contains classes and helpers to build a workflow, and provide options to convert to CWL / WDL
Project description
Janis (Pre-alpha)
Janis is a framework creating specialised, simple workflow definitions that are then transpiled to
Common Workflow Language or Workflow Definition Language.
Documentation is hosted here: https://janis.readthedocs.io/
Introduction
WARNING: this project is work-in-progress and is provided as-is without warranty of any kind. There may be breaking changes committed to this repository without notice.
Janis gives you an API to build computational workflows and will generate a workflow description in CWL and WDL. By using Janis, you get type-safety, portability and reproducibility across all of your execution environments.
Janis requires a Python installation > 3.6, and can be installed through PIP (project page):
# Install janis and the bioinformatics tools
pip3 install janis-pipelines[bioinformatics]
You can import Janis into your project with:
import janis as j
Structure
Janis is structured into components:
core
- contains classes and functions to assist in the workflow building.bioinformatics
- has bioinformatics tools and data types (import janis.bioinformatics
)unix
- Installed by default (import janis.unix
)
runner
- An assistant to run Janis workflows using different workflow engines with common semantics.
This repository manages the dependencies for installation and drives the documentation.
Example
Further information: Simple Workflow
Below we've constructed a simple example that takes a string input, calls the echo tool and exposes the Echo tool's output as a workflow output.
import janis as j
from janis.unix.tools.echo import Echo
w = j.Workflow("workflowId")
inp = j.Input("inputIdentifier", data_type=j.String(), value="Hello, World!")
echo = j.Step("stepIdentifier", tool=Echo())
out = j.Output("outputIdentifier")
w.add_edges([
(inp, echo.inp), # Connect 'inp' to 'echostep'
(echo.out, out), # Connect output of 'echostep' to 'out'
])
# Will print the CWL, input file and relevant tools to the console
w.translate("cwl", to_disk=False) # or "wdl"
We can export a CWL representation to the console using .translate("cwl")
. By including the
to_disk=True
parameter, we can write this workflow to disk at the current location.
More examples
-
Bioinformatics workflow tutorial: AlignSortedBam
-
Unix Toolset: in
janis/examples
. -
Whole genome germline pipeline: janis-examplepipelines repository.
Usage
Janis has an API that mirrors the workflow concepts:
-
j.Workflow
: A workflow represents theEdge
s betweenInput
,Step
,Output
j.Input
: An input to a Workflow, has an identifier, a type and a value.j.Step
: A step also has an identifier and aTool
(CommandTool
or a nestedWorkflow
).j.Output
: An output to a workflow has an identifier and is connected to a step.
-
j.CommandTool
: A command line style tool that builds it's command through the inputs and arguments.j.ToolInput
: An input to a tool, has an identifier, a type and command line options likeposition
,prefix
j.ToolArgument
: An argument to a tool that cannot be overridden. Has a value and command line options likeposition
andprefix
. The value can be a derived type, like anInputSelector
orStringFormatter
.j.ToolOutput
: Output to a tool, has an identifier, a type and a glob.
About
Further information: About
This project was produced as part of the Portable Pipelines Project in partnership with:
- Melbourne Bioinformatics (University of Melbourne)
- Peter MacCallum Cancer Centre
- Walter and Eliza Hall Institute of Medical Research (WEHI)
References:
Through conference or talks, this project has been referenced by the following titles:
- Walter and Eliza Hall Institute Talk (WEHI) 2019: Portable Pipelines Project: Developing reproducible bioinformatics pipelines with standardised workflow languages
- Bioinformatics Open Source Conference (BOSC) 2019: Janis: an open source tool to machine generate type-safe CWL and WDL workflows
- Victorian Cancer Bioinformatics Symposium (VCBS) 2019: Developing portable variant calling pipelines with Janis
Support
Contributions
Further information: Development
This project is work-in-progress and is still in developments. Although we welcome contributions, due to the immature state of this project we recommend raising issues through the Github issues page for Pipeline related issues.
Information about the project structure and more on contributing can be found within the documentation.
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
Hashes for janis_pipelines-0.5.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3180032df494aef90ef949eb6777ae7d1e2e2db6c54ec4eb4a90f4215c545ec |
|
MD5 | 14b7f52a695051d4e1764826a19c9d6a |
|
BLAKE2b-256 | 9e51f726e90b72cebd6b53e9486ce864f843e61720e0c8eac238fbc0341d9d6c |