Skip to content

Commit

Permalink
Reverted previous commit - found root of problem
Browse files Browse the repository at this point in the history
  • Loading branch information
kjaisingh committed Dec 4, 2024
1 parent f2f1da4 commit 9d6cbd4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions wdl/MakeGqRecalibratorTrainingSetFromPacBio.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ task PrepSampleVcf {
RuntimeAttr default_attr = object {
cpu_cores: 1,
mem_gb: 8,
mem_gb: 3.75,
disk_gb: ceil(50 + size(vcf, "GB")),
boot_disk_gb: 10,
preemptible_tries: 1,
Expand All @@ -390,8 +390,7 @@ task PrepSampleVcf {
# Subset to DEL/DUP/INS and convert DUP to INS
bcftools view -s "~{sample_id}" ~{vcf} | bcftools view --no-update --min-ac 1 -Oz -o tmp1.vcf.gz
python ~{default="/opt/sv-pipeline/scripts/preprocess_gatk_for_pacbio_eval.py" script} tmp1.vcf.gz \
| bcftools sort -Oz -o tmp2.vcf.gz
bgzip -c tmp2.vcf.gz > ~{output_prefix}.~{sample_id}.prepped_for_pb.vcf.gz
| bcftools sort -Oz -o ~{output_prefix}.~{sample_id}.prepped_for_pb.vcf.gz
tabix ~{output_prefix}.~{sample_id}.prepped_for_pb.vcf.gz
>>>
runtime {
Expand Down

0 comments on commit 9d6cbd4

Please sign in to comment.