Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions morphapi/morphology/morphology.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import neurom as nm
from neurom.core.dataformat import COLS
from vedo import merge
from vedo.colors import colorMap
from vedo.colors import color_map
from vedo.shapes import Sphere
from vedo.shapes import Tube

Expand Down Expand Up @@ -172,7 +172,7 @@ def _parse_mesh_kwargs(self, **kwargs):
if neuron_number is None:
neuron_number = 0

soma_color = colorMap(
soma_color = color_map(
neuron_number, name=cmap, vmin=cmap_lims[0], vmax=cmap_lims[1]
)
apical_dendrites_color = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"pyyaml>=5.3",
"retry",
"rich",
"vedo>=2021.0.3",
"vedo>=2023.5.0",
"vtk",
]

Expand Down