Skip to content
Snippets Groups Projects
Commit bea74f06 authored by Cats's avatar Cats
Browse files

adress unused inputs in bedtools sort

parent 7a89255a
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ task CPAT {
# select_first is needed in order to convert the optional arrays to non-optionals.
command {
set -e
mkdir -p $(dirname ~{outFilePath})
mkdir -p "$(dirname ~{outFilePath})"
cpat.py \
--gene ~{gene} \
--outfile ~{outFilePath} \
......
......@@ -27,6 +27,7 @@ task Sort {
Boolean sizeD = false
Boolean chrThenSizeA = false
Boolean chrThenSizeD = false
Boolean chrThenScoreA = false
Boolean chrThenScoreD = false
File? g
File? faidx
......@@ -41,6 +42,9 @@ task Sort {
-i ~{inputBed} \
~{true="-sizeA" false="" sizeA} \
~{true="-sizeD" false="" sizeD} \
~{true="-chrThenSizeA" false="" chrThenSizeA} \
~{true="-chrThenSizeD" false="" chrThenSizeD} \
~{true="-chrThenScoreA" false="" chrThenScoreA} \
~{true="-chrThenScoreD" false="" chrThenScoreD} \
~{"-g " + g} \
~{"-faidx" + faidx} \
......
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