Skip to content
Snippets Groups Projects
Commit 4154cee8 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

rename outputBAM back to outputBam, remove boolean

parent 38a6d164
No related branches found
No related tags found
No related merge requests found
...@@ -336,7 +336,6 @@ task View { ...@@ -336,7 +336,6 @@ task View {
File? referenceFasta File? referenceFasta
String outputFileName = "view.bam" String outputFileName = "view.bam"
Boolean includeHeader = false Boolean includeHeader = false
Boolean outputBam = false
Boolean uncompressedBamOutput = false Boolean uncompressedBamOutput = false
Int? includeFilter Int? includeFilter
Int? excludeFilter Int? excludeFilter
...@@ -356,7 +355,6 @@ task View { ...@@ -356,7 +355,6 @@ task View {
samtools view -b \ samtools view -b \
~{"-T " + referenceFasta} \ ~{"-T " + referenceFasta} \
~{"-o " + outputFileName} \ ~{"-o " + outputFileName} \
~{true="-b " false="" outputBam} \
~{true="-u " false="" uncompressedBamOutput} \ ~{true="-u " false="" uncompressedBamOutput} \
~{"-f " + includeFilter} \ ~{"-f " + includeFilter} \
~{"-F " + excludeFilter} \ ~{"-F " + excludeFilter} \
...@@ -368,7 +366,7 @@ task View { ...@@ -368,7 +366,7 @@ task View {
} }
output { output {
File outputBAM = outputFileName File outputBam = outputFileName
File outputBamIndex = outputIndexPath File outputBamIndex = outputIndexPath
} }
......
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