Skip to content

Commit

Permalink
add chromosome number to output filename
Browse files Browse the repository at this point in the history
  • Loading branch information
LindoNkambule committed Feb 4, 2025
1 parent 4178cc1 commit 0ff3e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gwaspy/check_alleles/check_alleles.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def fix_alleles(
job_name=vcf_path,
vcf=chrom_vcf,
ref_fasta=ref_fasta_in,
output_name=output_filename,
output_name=f'{output_filename}_chr{i}',
out_dir=output_path,
storage=disk_size
)
Expand All @@ -131,7 +131,7 @@ def fix_alleles(
vcf=chrom_vcf,
ref_fasta=ref_fasta_in,
allele_mode=fix_mode,
output_name=output_filename,
output_name=f'{output_filename}_chr{i}',
out_dir=output_path,
storage=disk_size
)
Expand Down

0 comments on commit 0ff3e08

Please sign in to comment.