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 {
File? referenceFasta
String outputFileName = "view.bam"
Boolean includeHeader = false
Boolean outputBam = false
Boolean uncompressedBamOutput = false
Int? includeFilter
Int? excludeFilter
......@@ -356,7 +355,6 @@ task View {
samtools view -b \
~{"-T " + referenceFasta} \
~{"-o " + outputFileName} \
~{true="-b " false="" outputBam} \
~{true="-u " false="" uncompressedBamOutput} \
~{"-f " + includeFilter} \
~{"-F " + excludeFilter} \
......@@ -368,7 +366,7 @@ task View {
}
output {
File outputBAM = outputFileName
File outputBam = outputFileName
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