Skip to content
Snippets Groups Projects
Commit b65fedb8 authored by Sascha Meiers's avatar Sascha Meiers
Browse files

Changed bash script because a for Loop caused bash 4.4 to hang within Docker

parent 61d4f9eb
No related branches found
No related tags found
No related merge requests found
......@@ -549,8 +549,8 @@ rule combine_strandphaser_output:
shell:
"""
set +o pipefail
cat {input} | head -n1 > {output} 2> {log};
for x in {input}; do tail -n+2 $x >> {output} 2>> {log}; done;
cat {input} | head -n1 > {output};
tail -q -n+2 {input} >> {output};
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment