pyflow
pyflow copied to clipboard
A lightweight parallel task engine
As reported in strelka issue: https://github.com/Illumina/strelka/issues/80#issuecomment-444625718
Hi! This looks like a great library! I've been using pydoit and snakemake up to now. I noticed, that travis is configured to test only python 2.7. Are there any...
Could it be added to PyPI so that installation can be done in one line (i.e. `sudo pip install pyflow`)?
Per strelka ext4 discussion here: https://github.com/Illumina/strelka/issues/89
Currently, I can use "cwd" argument as shown in the cwd demo for "addTask", but it gives me an error "unexpected keyword argument" if I use it with "addWorkflowTask".
Hi, I have a workflow that is dividing data into chunks and running workflowTasks on them. When there are too many workflowTasks, I am hitting the exception appended below. Using...
Hello, I was trying to debug this for a very long time.. It seems that if you have sub-tasks with the same label they will not run in parallel. For...
Pyflow has a nice option of starting from a particular task id when a workflow is run. eg, ``` python wf = SomeWorkflow() wf.run(startFromTasks='task_id') ``` Which works great as long...
Hello, I'm trying to intall pyflow in my python 2.7.5 installation, using the command: ``` pip install pyflow ``` I get the following error: ``` ImportError: No module named ez_setup...