Skip to content
Snippets Groups Projects
Commit 7f4e4747 authored by JasperBoom's avatar JasperBoom
Browse files

Replace mv command with cp.

parent 6a93ad83
No related branches found
No related tags found
No related merge requests found
......@@ -87,13 +87,13 @@ task Lima {
~{barcodeFile} \
~{basename(outputPrefix) + ".fl.bam"}
# Move commands below are needed because glob command does not find
# copy commands below are needed because glob command does not find
# multiple bam/bam.pbi/subreadset.xml files when not located in working
# directory.
mv "~{basename(outputPrefix)}.fl.json" "~{outputPrefix}.fl.json"
mv "~{basename(outputPrefix)}.fl.lima.counts" "~{outputPrefix}.fl.lima.counts"
mv "~{basename(outputPrefix)}.fl.lima.report" "~{outputPrefix}.fl.lima.report"
mv "~{basename(outputPrefix)}.fl.lima.summary" "~{outputPrefix}.fl.lima.summary"
cp "~{basename(outputPrefix)}.fl.json" "~{outputPrefix}.fl.json"
cp "~{basename(outputPrefix)}.fl.lima.counts" "~{outputPrefix}.fl.lima.counts"
cp "~{basename(outputPrefix)}.fl.lima.report" "~{outputPrefix}.fl.lima.report"
cp "~{basename(outputPrefix)}.fl.lima.summary" "~{outputPrefix}.fl.lima.summary"
}
output {
......
Subproject commit dfef7cb2555667126dc1751add414527240d71bc
Subproject commit b83da72b9b43b956a3062b78fb08044eb9fae464
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