Skip to content

Commit

Permalink
removed single-quotes for pythonic double quotes in faidx function
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Sep 12, 2024
1 parent d349cbc commit e11935e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phykit/services/alignment/faidx.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def run(self) -> None:
record_dict = SeqIO.index(self.fasta, "fasta")

# Split entries and iterate
for e in map(str.strip, self.entry.split(',')):
for e in map(str.strip, self.entry.split(",")):
record = record_dict[e]
print(f">{record.name}\n{record.seq}")

Expand Down

0 comments on commit e11935e

Please sign in to comment.