Skip to content

Commit

Permalink
Rename package fuser -> fuse
Browse files Browse the repository at this point in the history
  • Loading branch information
gmazzamuto committed Jan 25, 2021
1 parent ddd2981 commit 3f8aafb
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
entry_points={
'console_scripts': [
'stitch-align = zetastitcher.runner:main',
'stitch-fuse = zetastitcher.fuser.__main__:main',
'stitch-fuse = zetastitcher.fuse.__main__:main',
'stitch-downscale = zetastitcher.scripts.stitch_downscale:main',
],

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions zetastitcher/io/virtual_fused_volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

from .filematrix import FileMatrix
from .inputfile import InputFile
from ..fuser.overlaps import Overlaps
from ..fuser.fuse import fuse_queue
from ..fuse.overlaps import Overlaps
from ..fuse.fuse import fuse_queue

logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
Expand Down
4 changes: 2 additions & 2 deletions zetastitcher/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
from .io.inputfile import InputFile
from .io.filematrix import FileMatrix
from zetastitcher.io.xcorr_filematrix import XcorrFileMatrix
from zetastitcher.fuser import absolute_positions
from zetastitcher.fuser.__main__ import ABS_MODE_MAXIMUM_SCORE
from zetastitcher.fuse import absolute_positions
from zetastitcher.fuse.__main__ import ABS_MODE_MAXIMUM_SCORE
from .normxcorr import normxcorr2_cv

from .version import __version__
Expand Down

0 comments on commit 3f8aafb

Please sign in to comment.