Skip to content

Commit

Permalink
fixed touch error
Browse files Browse the repository at this point in the history
  • Loading branch information
ammaraziz committed May 25, 2022
1 parent f5a7f3d commit a1c3c2d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ elif run_mode == 'single':
restrictleft={params.restrict} \
out=stdout.fq \
stats={params.stats1} \
statscolumns=5 2>> {log} |
statscolumns=5 2>&1 {log} |

bbduk.sh in=stdin.fq \
ktrim=r \
Expand All @@ -369,7 +369,7 @@ elif run_mode == 'single':
restrictright={params.restrict} \
out={output.single} \
stats={params.stats2} \
statscolumns=5 2>> {log}
statscolumns=5 2>&1 {log}

touch {output.status}
"""
Expand All @@ -387,7 +387,7 @@ elif run_mode == 'single':
threads: 10
shell:"""
IRMA {params.run_module} {input.single} {params.folder} 1> {log}
touch > {output.status}
touch {output.status}
"""
else:
sys.exit("Something went wrong with the filter+irma command. Check output")
Expand Down

0 comments on commit a1c3c2d

Please sign in to comment.