Skip to content
Snippets Groups Projects
Commit 91a5cdd2 authored by cedrick's avatar cedrick
Browse files

add default outputPath

parent 64d7837d
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ version 1.0 ...@@ -25,7 +25,7 @@ version 1.0
task Bcf2Vcf { task Bcf2Vcf {
input { input {
File bcf File bcf
String outputPath String outputPath = "./bcftools/SV.vcf"
String dockerImage = "quay.io/biocontainers/bcftools:1.9--ha228f0b_3" String dockerImage = "quay.io/biocontainers/bcftools:1.9--ha228f0b_3"
} }
......
...@@ -30,7 +30,7 @@ task Mateclever { ...@@ -30,7 +30,7 @@ task Mateclever {
File indexedFiteredBam File indexedFiteredBam
BwaIndex bwaIndex BwaIndex bwaIndex
File predictions File predictions
String outputPath String outputPath = "./clever"
Int cleverMaxDelLength = 100000 Int cleverMaxDelLength = 100000
Int maxLengthDiff= 30 Int maxLengthDiff= 30
Int maxOffset = 150 Int maxOffset = 150
...@@ -84,7 +84,7 @@ task Prediction { ...@@ -84,7 +84,7 @@ task Prediction {
File bamFile File bamFile
File bamIndex File bamIndex
BwaIndex bwaIndex BwaIndex bwaIndex
String outputPath String outputPath = "./clever"
Int threads = 10 Int threads = 10
String memory = "15G" String memory = "15G"
......
...@@ -28,7 +28,7 @@ task CallSV { ...@@ -28,7 +28,7 @@ task CallSV {
File bamIndex File bamIndex
File referenceFasta File referenceFasta
File referenceFastaFai File referenceFastaFai
String outputPath String outputPath = "./delly/delly.vcf"
String memory = "15G" String memory = "15G"
String dockerImage = "quay.io/biocontainers/delly:0.8.1--h4037b6b_1" String dockerImage = "quay.io/biocontainers/delly:0.8.1--h4037b6b_1"
......
...@@ -26,7 +26,7 @@ task Germline { ...@@ -26,7 +26,7 @@ task Germline {
File bamIndex File bamIndex
File referenceFasta File referenceFasta
File referenceFastaFai File referenceFastaFai
String runDir String runDir = "./manta_run"
File? callRegions File? callRegions
File? callRegionsIndex File? callRegionsIndex
Boolean exome = false Boolean exome = false
......
...@@ -642,9 +642,8 @@ task SortVcf { ...@@ -642,9 +642,8 @@ task SortVcf {
task RenameSample { task RenameSample {
input { input {
File inputVcf File inputVcf
String outputPath String outputPath = "./picard/renamed.vcf"
String newSampleName String newSampleName
String memory = "24G" String memory = "24G"
String javaXmx = "8G" String javaXmx = "8G"
String dockerImage = "quay.io/biocontainers/picard:2.19.0--0" String dockerImage = "quay.io/biocontainers/picard:2.19.0--0"
......
...@@ -31,7 +31,7 @@ task Merge { ...@@ -31,7 +31,7 @@ task Merge {
Int strandType = 1 Int strandType = 1
Int distanceBySvSize = 0 Int distanceBySvSize = 0
Int minSize = 30 Int minSize = 30
String outputPath String outputPath = "./survivor/merged.vcf"
String memory = "24G" String memory = "24G"
String dockerImage = "quay.io/biocontainers/survivor:1.0.6--h6bb024c_0" String dockerImage = "quay.io/biocontainers/survivor:1.0.6--h6bb024c_0"
} }
......
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