Skip to content

Commit

Permalink
fix: upper case root sequence for ancestral reconstruction
Browse files Browse the repository at this point in the history
  • Loading branch information
rneher committed Sep 26, 2023
1 parent 2ec73cd commit f9c3e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion augur/ancestral.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def run(args):
if args.root_sequence:
for fmt in ['fasta', 'genbank']:
try:
ref = str(SeqIO.read(args.root_sequence, fmt).seq)
ref = str(SeqIO.read(args.root_sequence, fmt).seq).upper()
break
except:
pass
Expand Down

0 comments on commit f9c3e19

Please sign in to comment.