Skip to content

Commit

Permalink
Fix syntax error crashing mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed May 23, 2024
1 parent 2a022da commit 5be1d87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion micall/utils/make_hcv_genotype_refs.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def convert_fasta (lines):
if subtype in processed_subtypes:
continue
for region, refseq in h77.iteritems():
print subtype, region
print(subtype, region)
aquery, aref, ascore = hyphyAlign.pair_align(hyphy, refseq, genome)
left, right = hyphyAlign.get_boundaries(aref)
outfile.write('>%s-%s\n%s\n' % (subtype,
Expand Down

0 comments on commit 5be1d87

Please sign in to comment.