Skip to content

Commit

Permalink
resolved typo in log
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Jun 25, 2024
1 parent 7dcdff8 commit cc8fe75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ def get_all_mhcI_alleles(wildcards):
return values



##### MHC CLASS II #####
def get_input_hlatyping_mhcII(wildcards):

Expand Down
6 changes: 3 additions & 3 deletions workflow/rules/germline.smk
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rule get_gatk_vqsr_training_sets:
message:
"Downloading training sets for calling high confidence variants"
log:
"logs/gatk_get_training)_sets.log"
"logs/gatk_get_training_sets.log"
conda:
"../envs/basic.yml"
shell:
Expand Down Expand Up @@ -133,9 +133,9 @@ rule merge_variants_htc_first_round:
"../envs/bcftools.yml"
shell:
"""
bcftools concat -O z -a {input.vcf} -o {output} > {log} 2>&1
bcftools concat --naive-force -O z {input.vcf} -o - | bcftools sort -O z -o {output} > {log} 2>&1
"""

rule index_merged_variants_htc_first_round:
input:
"results/{sample}/{seqtype}/indel/htcaller/{group}_variants.1rd.vcf.gz"
Expand Down

0 comments on commit cc8fe75

Please sign in to comment.