Skip to content

Commit

Permalink
Updated vitessce and fixed builder
Browse files Browse the repository at this point in the history
  • Loading branch information
tkakar committed Dec 3, 2024
1 parent 3c0eabc commit a201fdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ python_requires = >=3.7
install_requires =
# Currently pinned due to the added `spatialdata` dependency
# having a lot of uncapped dependencies that are causing conflicts with search-api downstream.
vitessce==3.4.0
vitessce==3.5.0
hubmap-commons>=2.0.15
requests>=2.27.1
nbformat==5.1.3
Expand Down
2 changes: 1 addition & 1 deletion src/portal_visualization/builders/epic_builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def read_segmentation_scale(self): # pragma: no cover
def create_segmentation_objects(base_url, mask_names): # pragma: no cover
segmentation_objects = []
segmentations_CL = []
for mask_name in enumerate(mask_names):
for mask_name in mask_names:
color_channel = generate_unique_color()
mask_url = f'{base_url}/{mask_name}.zarr'
segmentations_zarr = AnnDataWrapper(
Expand Down

0 comments on commit a201fdf

Please sign in to comment.