diff --git a/cytosnake/cli/exec/workflow_exec.py b/cytosnake/cli/exec/workflow_exec.py index f51a9df2..a9dc3738 100644 --- a/cytosnake/cli/exec/workflow_exec.py +++ b/cytosnake/cli/exec/workflow_exec.py @@ -61,7 +61,6 @@ def __base_exec( unlock=unlock, forceall=force, use_conda=True, - conda_prefix=env_manager, conda_frontend=env_manager, ) diff --git a/cytosnake/helpers/datapaths.py b/cytosnake/helpers/datapaths.py index 0d5c857f..fafc4b3e 100644 --- a/cytosnake/helpers/datapaths.py +++ b/cytosnake/helpers/datapaths.py @@ -11,14 +11,13 @@ """ import pathlib -from typing import Optional from collections import defaultdict +from typing import Optional -from cytosnake.utils import cyto_paths from cytosnake.guards.path_guards import is_valid_path +from cytosnake.utils import cyto_paths from cytosnake.utils.config_utils import load_general_configs, load_meta_path_configs - # loading in config files META_PATH_CONFIGS = load_meta_path_configs() GENERAL_CONFIGS = load_general_configs() diff --git a/workflows/envs/cytotable.yaml b/workflows/envs/cytotable.yaml index 5d52d2d2..9fd1c237 100644 --- a/workflows/envs/cytotable.yaml +++ b/workflows/envs/cytotable.yaml @@ -4,7 +4,7 @@ channels: - anaconda - defaults dependencies: - - python==3.8 + - python==3.10 - pip - pip: - - git+https://github.com/cytomining/CytoTable.git@f336d26baf96b8b3d9ed6ca07f617895030bf038 + - cytotable diff --git a/workflows/scripts/aggregate_cells.py b/workflows/scripts/aggregate_cells.py index b970b3be..89b6de8a 100644 --- a/workflows/scripts/aggregate_cells.py +++ b/workflows/scripts/aggregate_cells.py @@ -72,7 +72,6 @@ def aggregate( # Loading appropriate platemaps with given plate data logging.info(f"Loading plate data from: {str(sqlite_file_path)}") - plate_file_check = pathlib.Path(sql_file).is_file() # checking if the the sqli_file is found or it's a file type if not pathlib.Path(sql_file).is_file():