Skip to content

Commit 84b2dc6

Browse files
authored
Update CytoTable Environment File (#56)
* fixed minor pathing bugs * applied pre-commit changes * update cytotable env file * removed prefix parameter * update python version
1 parent 1e0e5e4 commit 84b2dc6

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

cytosnake/cli/exec/workflow_exec.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ def __base_exec(
6161
unlock=unlock,
6262
forceall=force,
6363
use_conda=True,
64-
conda_prefix=env_manager,
6564
conda_frontend=env_manager,
6665
)
6766

cytosnake/helpers/datapaths.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
"""
1212

1313
import pathlib
14-
from typing import Optional
1514
from collections import defaultdict
15+
from typing import Optional
1616

17-
from cytosnake.utils import cyto_paths
1817
from cytosnake.guards.path_guards import is_valid_path
18+
from cytosnake.utils import cyto_paths
1919
from cytosnake.utils.config_utils import load_general_configs, load_meta_path_configs
2020

21-
2221
# loading in config files
2322
META_PATH_CONFIGS = load_meta_path_configs()
2423
GENERAL_CONFIGS = load_general_configs()

workflows/envs/cytotable.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- anaconda
55
- defaults
66
dependencies:
7-
- python==3.8
7+
- python==3.10
88
- pip
99
- pip:
10-
- git+https://github.com/cytomining/CytoTable.git@f336d26baf96b8b3d9ed6ca07f617895030bf038
10+
- cytotable

workflows/scripts/aggregate_cells.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ def aggregate(
7272

7373
# Loading appropriate platemaps with given plate data
7474
logging.info(f"Loading plate data from: {str(sqlite_file_path)}")
75-
plate_file_check = pathlib.Path(sql_file).is_file()
7675

7776
# checking if the the sqli_file is found or it's a file type
7877
if not pathlib.Path(sql_file).is_file():

0 commit comments

Comments
 (0)