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

cleanup bedtools.wdl

parent b0c7054f
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 1.0.0-dev
---------------------------
+ All inputs to bedtools Sort are now reflected in the generated command
+ Add WDL task for TALON
+ Add WDL task for TranscriptClean
+ Fastqsplitter: fix mkdir command to work with biocontainer's busybox mkdir
......
......@@ -30,7 +30,6 @@ task Sort {
Boolean chrThenScoreD = false
File? g
File? faidx
Boolean header = false
String outputBed = "output.sorted.bed"
String dockerImage = "quay.io/biocontainers/bedtools:2.23.0--hdbcaa40_3"
}
......@@ -40,9 +39,11 @@ task Sort {
mkdir -p $(dirname ~{outputBed})
bedtools sort \
-i ~{inputBed} \
~{if sizeA then "-sizeA" else ""} \
~{if sizeD then "-sizeD" else ""} \
~{if chrThenSizeD then "-chrThenSizeD" else ""} \
~{true="-sizeA" false="" sizeA} \
~{true="-sizeD" false="" sizeD} \
~{true="-chrThenScoreD" false="" chrThenScoreD} \
~{"-g " + g} \
~{"-faidx" + faidx} \
> ~{outputBed}
}
......@@ -53,6 +54,4 @@ task Sort {
runtime {
docker: dockerImage
}
}
\ No newline at end of file
}
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