Skip to content

Commit

Permalink
Made cp recursive.
Browse files Browse the repository at this point in the history
  • Loading branch information
annahoge authored Nov 21, 2019
1 parent 3c0fcb4 commit 8173730
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/snakemake/TitanCNA.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ rule copyOptSolution:
for i in `cut -f11 {input} | grep -v "path"`;
do
echo -e "Copying $curDir/${{i}} to {output}"
cp ${{curDir}}/${{i}}* {output}
cp -r ${{curDir}}/${{i}}* {output}
done
"""

Expand Down

0 comments on commit 8173730

Please sign in to comment.