Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
fix: bug in pipe group handling that led to multiple assignments of t…
…he same group id to different groups; bug that accidentally added already running groups of the list of ready jobs (issue #1331) (#1332) * issue 1331 * Update Snakefile * Update Snakefile * fix: bug in pipe group handling that led to multiple assignments of the same group id to different groups; bug that accidentally added already running groups of the list of ready jobs * fmt * skip on win Co-authored-by: Johannes Köster <johannes.koester@tu-dortmund.de>
- Loading branch information
1 parent
7189183
commit 1a9b483
Showing
10 changed files
with
55 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
rule all: | ||
input: | ||
[ | ||
"aligned_and_sort/1.txt", | ||
"aligned_and_sort/2.txt", | ||
"aligned_and_sort/3.txt", | ||
"aligned_and_sort/4.txt", | ||
"aligned_and_sort/5.txt", | ||
"aligned_and_sort/6.txt", | ||
] | ||
|
||
|
||
checkpoint trimming: | ||
output: | ||
"trimmed/{sample}.txt" | ||
shell: | ||
"touch {output}; sleep 1" | ||
|
||
|
||
rule align: | ||
input: | ||
"trimmed/{sample}.txt" | ||
output: | ||
pipe("aligned/{sample}.txt") | ||
shell: | ||
"touch {output}; sleep 1" | ||
|
||
|
||
rule sort: | ||
input: | ||
"aligned/{sample}.txt" | ||
output: | ||
"aligned_and_sort/{sample}.txt" | ||
shell: | ||
"touch {output}; sleep 1" |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters