2_Pixie_Cluster_Pixels notebook error: cluster_pixels() missing 1 required positional argument: 'pixel_pysom'
leorrose opened this issue · 4 comments
Describe the bug
Error when running the 2_Pixie_Cluster_Pixels.ipynb Assign pixel SOM clusters section.
Expected behavior
Smooth running of the notebook without any errors.
To Reproduce
Run cells in 2_Pixie_Cluster_Pixels.ipynb.
Full error (when running the
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
Cell In[19], line 2
1 # use pixel SOM weights to assign pixel clusters
----> 2 pixel_som_clustering.cluster_pixels(
3 fovs,
4 base_dir,
5 pixel_pysom,
6 data_dir=pixel_data_dir,
7 multiprocess=multiprocess,
8 batch_size=batch_size
9 )
11 # generate the SOM cluster summary files
12 pixel_som_clustering.generate_som_avg_files(
13 fovs,
14 channels,
(...)
18 pc_chan_avg_som_cluster_name=pc_chan_avg_som_cluster_name
19 )
TypeError: cluster_pixels() missing 1 required positional argument: 'pixel_pysom'
@leorrose Looking into this, but I can't seem to duplicate it on my end. Were any of the parameters in the notebook adjusted?
@srivarra thanks for looking into this. In the notebook itself I did not change any of the parameters.
I did the following steps:
- I cloned the repo:
git clone -b v0.7.0 https://github.com/angelolab/ark-analysis.git
. - Moved to the cloned repo:
cd ark-analysis
. - Changed the python version in environment.yml to 3.10 because 3.11 was not working.
- Created the environment:
conda env create -f environment.yml
- Ran the 2_Pixie_Cluster_Pixels.ipynb notebook.
@leorrose if you have an old version of ark
installed you may need to explicitly install it. The pixel_pysom
argument is an addition to the pixel_som_clustering.pixel_pysom
function that is not backwards compatible with older versions. Even if you pulled the new version of ark
, caching can cause old installations to remain.
To do so, ensure you are in the root of the ark-analysis
directory and run pip install -e .
. This should ensure everything is up-to-date.
@alex-l-kong Thanks for the help!
I ended up solving it using what you suggested: pip install -e .
. But I did do some different steps from what is suggested in the readme and also added the --no-cache-dir flag:
- I cloned the main repo:
https://github.com/angelolab/ark-analysis.git
. - Moved to the cloned repo:
cd ark-analysis
. - Created the environment:
conda create -n ark_env python=3.10
. - Started the conda environment:
conda activate ark_env
. - Installed all the packages as suggested:
pip install -e . --no-cache-dir
. - Ran the 2_Pixie_Cluster_Pixels.ipynb notebook.
Now everything works 😊