Skip to content

Commit

Permalink
Removed redundant WDLs
Browse files Browse the repository at this point in the history
  • Loading branch information
kjaisingh committed Feb 4, 2025
1 parent 9c598ad commit bdb3bcc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 292 deletions.
196 changes: 0 additions & 196 deletions wdl/CombineVcfsForMakeGq.wdl

This file was deleted.

91 changes: 0 additions & 91 deletions wdl/PreprocessVcfForVapor.wdl

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
version 1.0

workflow PreprocessVcfForMakeGq {
workflow ProcessRawCallerVcfForMakeGq {
input {
String sample_id # Sample identifier
File vcf_path # Path to the input VCF file
File contigs_fai # Path to the contigs file
File ploidy_table # Path to the ploidy table file
File ploidy_table # Path to the ploidy table file
Int min_size # Minimum size for standardization
String caller # Caller name
String sv_pipeline_docker # Docker image path for GATK-SV
}
Expand All @@ -18,6 +19,7 @@ workflow PreprocessVcfForMakeGq {
vcf_path = vcf_path,
contigs_fai = contigs_fai,
min_size = min_size,
caller = caller,
sv_pipeline_docker = sv_pipeline_docker
}

Expand All @@ -41,6 +43,7 @@ task StandardizeVcf {
File vcf_path
File contigs_fai
Int min_size
String caller
String sv_pipeline_docker
}

Expand All @@ -53,7 +56,7 @@ task StandardizeVcf {
--min-size ~{min_size} \
~{vcf_path} \
~{sample_id}.std.vcf.gz \
dragen
~{caller}

tabix -p vcf ~{sample_id}.std.vcf.gz
>>>
Expand Down
5 changes: 3 additions & 2 deletions wdl/Vapor.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ workflow Vapor {

RuntimeAttr? runtime_attr_subset_sample
RuntimeAttr? runtime_attr_vcf_to_bed
RuntimeAttr? runtime_attr_preprocess_bed
RuntimeAttr? runtime_attr_localize_cram
RuntimeAttr? runtime_attr_vapor
RuntimeAttr? runtime_attr_split_vcf
RuntimeAttr? runtime_attr_concat_beds
File? NONE_FILE_ # Create a null file - do not use this input
}
Expand Down

0 comments on commit bdb3bcc

Please sign in to comment.