Skip to content

Commit

Permalink
fix black format
Browse files Browse the repository at this point in the history
  • Loading branch information
lruizcalico committed Sep 26, 2023
1 parent 340ff9e commit 3c86e2a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/baskerville/vcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,9 @@ def vcf_snps(
if validate_ref_fasta is not None:
ref_n = len(snps[-1].ref_allele)
snp_pos = snps[-1].pos - 1
ref_snp = genome_open.fetch(snps[-1].chr, snp_pos, snp_pos + ref_n).upper()
ref_snp = genome_open.fetch(
snps[-1].chr, snp_pos, snp_pos + ref_n
).upper()
if snps[-1].ref_allele != ref_snp:
if not flip_ref:
# bail
Expand Down

0 comments on commit 3c86e2a

Please sign in to comment.