Skip to content
Snippets Groups Projects
Commit 08aa3357 authored by Cats's avatar Cats
Browse files

fix/add somaticSeq output

parent 2c2bed96
No related branches found
No related tags found
1 merge request!74add SomaticSeq
......@@ -60,8 +60,8 @@ task SomaticSeqWrapper {
output {
File consensusIndels = outputDir + "/Consensus.sINDEL.vcf"
File consensusSNV = outputDir + "/Consensus.sSNV.vcf"
File ensembleIndels = outputDir + "/Ensemble.sINDEL.vcf"
File ensembleSNV = outputDir + "/Ensemble.sSNV.vcf"
File ensembleIndels = outputDir + "/Ensemble.sINDEL.tsv"
File ensembleSNV = outputDir + "/Ensemble.sSNV.tsv"
}
}
......@@ -104,4 +104,11 @@ task SsSomaticSeqWrapper {
~{"--scalpel " + scalpelVCF} \
~{"--strelka " + strelkaVCF}
}
output {
File consensusIndels = outputDir + "/Consensus.ssINDEL.vcf"
File consensusSNV = outputDir + "/Consensus.ssSNV.vcf"
File ensembleIndels = outputDir + "/Ensemble.ssINDEL.tsv"
File ensembleSNV = outputDir + "/Ensemble.ssSNV.tsv"
}
}
\ 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