Skip to content

Commit

Permalink
Merge pull request #82 from annahoge/patch-1
Browse files Browse the repository at this point in the history
Made cp recursive.
  • Loading branch information
gavinha authored Dec 19, 2019
2 parents 97413f0 + 8173730 commit c4f94ee
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 c4f94ee

Please sign in to comment.