Skip to content

Commit

Permalink
fix_cli_typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tdefa committed Jun 10, 2024
1 parent b025d28 commit 3c4624d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion sopa/cli/patchify.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def baysor(
):
"""Prepare patches for transcript-based segmentation with baysor"""
from sopa._constants import SopaKeys, SopaFiles

from .utils import _default_boundary_dir


Expand Down Expand Up @@ -126,7 +127,7 @@ def comseg(
):
"""Prepare patches for transcript-based segmentation with ComSeg"""

from sopa._constants import SopaKeys, SopaFiles
from sopa._constants import SopaFiles, SopaKeys

from .utils import _default_boundary_dir

Expand Down
5 changes: 2 additions & 3 deletions sopa/cli/segmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
app_segmentation = typer.Typer()



@app_segmentation.command()
def cellpose(
sdata_path: str = typer.Argument(help=SDATA_HELPER),
Expand Down Expand Up @@ -195,15 +194,15 @@ def comseg(
"""Perform ComSeg segmentation. This can be done on all patches directly, or on one individual patch."""
import json
import logging
from pathlib import Path

from sopa._constants import SopaFiles, SopaKeys
from sopa.segmentation.methods import comseg_patch

from pathlib import Path

from .utils import _default_boundary_dir

log = logging.getLogger(__name__)
log=logging.getLogger(__name__)

config_name = SopaFiles.JSON_CONFIG_FILE

Expand Down

0 comments on commit 3c4624d

Please sign in to comment.