Skip to content

Commit

Permalink
fix: cli algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 16, 2023
1 parent 6ae2be7 commit e284667
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fasta_checksum_utils/entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pathlib import Path

from . import __version__
from .algorithms import AlgorithmMD5, AlgorithmTRUNC512
from .algorithms import AlgorithmMD5, AlgorithmGA4GH
from .fasta import fasta_report


Expand All @@ -24,7 +24,7 @@ async def main():

args = parser.parse_args()

report = await fasta_report(args.fasta, (AlgorithmMD5, AlgorithmTRUNC512))
report = await fasta_report(args.fasta, (AlgorithmMD5, AlgorithmGA4GH))
if args.out_format == "bento-json":
print(report.as_bento_json(genome_id=getattr(args, "genome_id", None)))
else:
Expand Down

0 comments on commit e284667

Please sign in to comment.