Skip to content
Snippets Groups Projects
Unverified Commit 3f768510 authored by Cedrick Agaser's avatar Cedrick Agaser Committed by GitHub
Browse files

Merge branch 'develop' into optional-indexing

parents 5781179d 748ed63b
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 5.0.0-dev
---------------------------
+ survivor: replace integer boolean type to logical true or false value.
+ vt: Add option to ignore masked reference.
+ bcftools: add sorting and annotation
+ Bam2fastx: Input bam and index are now arrays.
......
......@@ -27,9 +27,9 @@ task Merge {
Array[File] filePaths
Int breakpointDistance = 1000
Int suppVecs = 2
Int svType = 1
Int strandType = 1
Int distanceBySvSize = 0
Boolean svType = true
Boolean strandType = true
Boolean distanceBySvSize = false
Int minSize = 30
String outputPath = "./survivor/merged.vcf"
String memory = "24G"
......@@ -45,9 +45,9 @@ task Merge {
fileList \
~{breakpointDistance} \
~{suppVecs} \
~{svType} \
~{strandType} \
~{distanceBySvSize} \
~{true=1 false=0 svType} \
~{true=1 false=0 strandType} \
~{true=1 false=0 distanceBySvSize} \
~{minSize} \
~{outputPath}
}
......
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