Skip to content

Commit

Permalink
Fix delly
Browse files Browse the repository at this point in the history
  • Loading branch information
khurrammaqbool committed Jul 29, 2021
1 parent 060cec3 commit b6631aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ rule delly_tumor_only:
bamT = bam_dir + tumor_bam,
excl = config["reference"]["delly_exclusion_converted"],
output:
final = vcf_dir + "SV.somatic." + config["analysis"]["case_id"] + ".delly.vcf.gz"
final = vcf_dir + "SV.somatic." + config["analysis"]["case_id"] + ".delly.vcf.gz",
namemap= vcf_dir + "SV.somatic." + config["analysis"]["case_id"] + ".delly.sample_name_map",
benchmark:
benchmark_dir + 'delly_tumor_only_' + config["analysis"]["case_id"] + "_delly.tsv"
singularity:
Expand Down
2 changes: 1 addition & 1 deletion BALSAMIC/utils/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class VCFModel(BaseModel):
manta_germline: VarcallerAttribute
haplotypecaller: VarcallerAttribute
TNscope_umi: VarcallerAttribute
delly: VarcallerAttribute
# delly: VarcallerAttribute

class AnalysisModel(BaseModel):
"""Pydantic model containing workflow variables
Expand Down

0 comments on commit b6631aa

Please sign in to comment.