Skip to content

Commit

Permalink
fix: two modules imported as hcs
Browse files Browse the repository at this point in the history
  • Loading branch information
js2264 committed May 30, 2024
1 parent 9f04d34 commit 343d58e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hicstuff/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
import hicstuff.digest as hcd
import hicstuff.iteralign as hci
import hicstuff.filter as hcf
import hicstuff.stats as hcs
import hicstuff.stats as hcstats
from hicstuff.version import __version__
import hicstuff.io as hio
from hicstuff.log import logger
Expand Down Expand Up @@ -1670,8 +1670,8 @@ class Stats(AbstractCommand):

def execute(self):
log_file = self.args["<log>"]
stats = hcs.get_pipeline_stats(log_file)
hcs.print_pipeline_stats(stats)
stats = hcstats.get_pipeline_stats(log_file)
hcstats.print_pipeline_stats(stats)

def parse_bin_str(bin_str):
"""Bin string parsing
Expand Down

0 comments on commit 343d58e

Please sign in to comment.