Skip to content
Snippets Groups Projects
Unverified Commit 750fb263 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #303 from biowdl/sage

Updates for WGSinCancerDiagnostics
parents cbd6de84 743e4e06
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,19 @@ that users understand how the changes affect the new version. ...@@ -9,6 +9,19 @@ that users understand how the changes affect the new version.
--> -->
version 5.1.0-dev version 5.1.0-dev
--------------------------- ---------------------------
+ Added a task for CupGenerateReport.
+ Updated Cuppa to version 1.6.
+ Added a task for Gripss.
+ Fixed the HealthChecker task's determination of the `succeeded` output
value.
+ Updated Linx to version 1.18.
+ Added a task for LinxVisualization.
+ Added a task for HMFtools Orange.
+ Added a task for HMFtools Pave.
+ Updated Purple to version 3.2.
+ Added plot and table outputs of Sage to task outputs.
+ Updated virus-interpreter to version 1.2.
+ Updated Peach to version 1.5.
+ Added a task to add SVTYPE annotations to GRIDSS results + Added a task to add SVTYPE annotations to GRIDSS results
(`AnnotateSvTypes`). (`AnnotateSvTypes`).
+ The GRIDSS task will now run tabix separately if GRIDSS doesn't + The GRIDSS task will now run tabix separately if GRIDSS doesn't
......
This diff is collapsed.
...@@ -22,7 +22,6 @@ version 1.0 ...@@ -22,7 +22,6 @@ version 1.0
task Peach { task Peach {
input { input {
File transcriptTsv
File germlineVcf File germlineVcf
File germlineVcfIndex File germlineVcfIndex
String tumorName String tumorName
...@@ -31,28 +30,26 @@ task Peach { ...@@ -31,28 +30,26 @@ task Peach {
File panelJson File panelJson
String memory = "2G" String memory = "2G"
String dockerImage = "quay.io/biowdl/peach:v1.0" String dockerImage = "quay.io/biowdl/peach:v1.5"
Int timeMinutes = 5 Int timeMinutes = 5
} }
command { command {
set -e
mkdir -p ~{outputDir}
peach \ peach \
--recreate_bed \ --vcf ~{germlineVcf} \
--transcript_tsv ~{transcriptTsv} \ --sample_t_id ~{tumorName} \
~{germlineVcf} \ --sample_r_id ~{normalName} \
~{tumorName} \ --tool_version 1.5 \
~{normalName} \ --outputdir ~{outputDir} \
1.0 \ --panel ~{panelJson}
~{outputDir} \
~{panelJson} \
vcftools
} }
output { output {
File callsTsv = "~{outputDir}/~{tumorName}.peach.calls.tsv" File callsTsv = "~{outputDir}/~{tumorName}.peach.calls.tsv"
File filteredVcf = "~{outputDir}/~{tumorName}.peach.filtered.vcf"
File genotypeTsv = "~{outputDir}/~{tumorName}.peach.genotype.tsv" File genotypeTsv = "~{outputDir}/~{tumorName}.peach.genotype.tsv"
Array[File] outputs = [callsTsv, filteredVcf, genotypeTsv] Array[File] outputs = [callsTsv, genotypeTsv]
} }
runtime { runtime {
...@@ -62,7 +59,6 @@ task Peach { ...@@ -62,7 +59,6 @@ task Peach {
} }
parameter_meta { parameter_meta {
transcriptTsv: {description: "A tsv file describing transcripts.", category: "required"}
germlineVcf: {description: "The germline VCF file from hmftools' purple.", category: "required"} germlineVcf: {description: "The germline VCF file from hmftools' purple.", category: "required"}
germlineVcfIndex: {description: "The germline VCF's index.", category: "required"} germlineVcfIndex: {description: "The germline VCF's index.", category: "required"}
tumorName: {description: "The name of the tumor sample.", category: "required"} tumorName: {description: "The name of the tumor sample.", category: "required"}
...@@ -74,4 +70,4 @@ task Peach { ...@@ -74,4 +70,4 @@ task Peach {
memory: {description: "The amount of memory available to the job.", category: "advanced"} memory: {description: "The amount of memory available to the job.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.", category: "advanced"} dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.", category: "advanced"}
} }
} }
\ 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