Closed pdiakumis closed 5 years ago
Thanks Peter! Appreciate the feedback.
I've caught the rest of the dump_translation
, and replaced pip with pip3 (edf565e2fe5a15faad7c833a81fd5de88b4da169) - I generally replace my Python with conda, and forget that's not the norm.
We've separated the bioinformatics tools definitions from the main workflow building classes into separate repositories; by including the [bioinformatics]
extra when you install, ie: pip3 install janis-pipelines[bioinformatics]
, you also install the bioinformatics tools.
Ha, for the zsh shell you need to quote the last bit, or else it doesn't recognise it:
(janis) ➜ ~ pip install janis-pipelines[bioinformatics]
zsh: no matches found: janis-pipelines[bioinformatics]
(janis) ➜ ~ pip install "janis-pipelines[bioinformatics]"
Collecting janis-pipelines[bioinformatics]
Using cached https://files.pythonhosted.org/packages/eb/6e/ae04f5e2c95b522bb8aa39f3f80d34035ad67e3abf09d0cab2286ba740c7/janis_pipelines-0.2.16-py3-none-any.whl
Collecting illusional.wdlgen (from janis-pipelines[bioinformatics])
[...]
Thanks!
This is great work folks, just started playing with the examples. Understand that it's still in heavy dev, but I took a couple of notes going through the intro doc which might help other noobs getting started. Can submit a PR if you want.
pip
is needed for installation; couldn't get it to work with my default, rusty Py2pip
:dump_translation
was changed totranslate
in 73adb94789ef121a8469e9fa77bb154ad142cb36 - first example needs an update:Cheers - Peter