Skip to content

Commit

Permalink
minor syntax fix for input vcf and ref vcf
Browse files Browse the repository at this point in the history
  • Loading branch information
LindoNkambule committed Feb 14, 2024
1 parent d133002 commit 3cc9f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gwaspy/phasing/shapeit5_phase.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def phase_common(

# phase common variants
j.command(f"""
phase_common_static --input {vcf['bcf']} \
{f'--reference {ref_vf}' if ref_vf else ''} \
phase_common_static --input {vcf['vcf']} \
{f"--reference {ref_vf['vcf']}" if ref_vf else ''} \
--map /root/gwaspy/resources/maps/b38/{chrom}.b38.gmap.gz \
--output {j.phased_common_chunk['bcf']} \
--thread {ncpu-1} \
Expand Down

0 comments on commit 3cc9f05

Please sign in to comment.