Skip to content

Commit

Permalink
fix wrong module name
Browse files Browse the repository at this point in the history
  • Loading branch information
lrauschning committed Dec 6, 2024
1 parent f76c824 commit c8d8f99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions msyd/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def call(args):
import msyd.imputation as imputation
import msyd.realignment as realignment
import msyd.intersection as intersection
import msyd.private as private
import msyd.priv as priv
import msyd.ordering as ordering
import msyd.util as util

Expand All @@ -207,7 +207,7 @@ def call(args):
logger.info("Intersected synteny")

if args.private:
syndict = private.complement_dict(syndict, add=True, cores=args.cores)
syndict = priv.complement_dict(syndict, add=True, cores=args.cores)
logger.info("Annotated private regions on ref.")


Expand Down

0 comments on commit c8d8f99

Please sign in to comment.