Skip to content

Commit

Permalink
Fix minor error
Browse files Browse the repository at this point in the history
  • Loading branch information
jlumpe committed Aug 4, 2024
1 parent 56e7a09 commit 69a9edc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gambit/sigs/calc.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def calc_file_signature(kspec: KmerSpec,
.calc_file_signatures
"""
with seqfile.parse() as records:
return calc_signature(kspec, (record.seq for record in records))
return calc_signature(kspec, (record.seq for record in records), accumulator=accumulator)


def calc_file_signatures(kspec: KmerSpec,
Expand Down

0 comments on commit 69a9edc

Please sign in to comment.