Skip to content

Commit

Permalink
update WDL according to viz tool change
Browse files Browse the repository at this point in the history
  • Loading branch information
yueyaog committed Jul 31, 2024
1 parent d1e43be commit bcf98a8
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions CNV-Profiler/CNV-Profiler.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ workflow CNV_Profiler {
sampleName = sampleName,
depthProfile = SamtoolsDepth.depth_profile,
cnvBedFile = cnvBedFile,
cnvProfiler_Docker = cnvProfiler_Docker
cnvProfiler_Docker = cnvProfiler_Docker,
PaddedcnvBedFile = GetPaddedCnvBed.paddedCnvBed
}
if (heterozygosityCheck) {
call HeterozygosityCheck {
Expand Down Expand Up @@ -227,8 +228,7 @@ task cnvDepthProfiler{
String cnvProfiler_Docker
File depthProfile
File cnvBedFile
File? secondBedFile
Int smooth_window = 5000
File PaddedcnvBedFile
Int intervalPadding = 0
Int mem_gb = 64
Int cpu = 8
Expand All @@ -248,10 +248,8 @@ task cnvDepthProfiler{
-c ~{depthProfile} \
-b ~{cnvBedFile} \
-n ~{sampleName} \
-sb ~{secondBedFile} \
-sn DRAGEN \
-pd ~{PaddedcnvBedFile} \
-p ~{intervalPadding} \
-s ~{smooth_window} \
-o output
>>>
Expand Down

0 comments on commit bcf98a8

Please sign in to comment.