- added a mechanism to update the requirements of the implicit merge via GENERAL section. Note: you can switch off the implicit merge and use an explicit merge if you want to specify a particular requirement for only that merge task.
- previously, multiple identical implicit merge tasks could exist in a workflow. In the new version, they are combined into a single merge task that happens only once.
- added a switch called
merge
that defaults toTrue
in the run subsection of each task. If it is set toFalse
, the implicit merging mechanism is switched off for that task and the following warning message is shown when initializing the workflow:
UserWarning: Implicit merge is off for task <the_task_name>. You may have to use an explicit merge task.
- added support for tags in the interval file, i.e. an optional tag can be added for each chunk in each line of the interval file that will be used as the suffix for the name of the task corresponding to that chunk. The tags should be added to each line using tab as the separation character, e.g.
chunk1 tag1
chunk2 tag2
chunk3
chunk4 tag4
- bug fixes.