Skip to content

Commit

Permalink
Microns interface: various small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Oct 17, 2024
1 parent 1806a1b commit c8f1427
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions navis/interfaces/microns.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ def list_annotation_tables(datastack="cortex65"):
List of available annotation tables.
"""
return cave_utils.get_cave_client(datastack).materialize.get_tables()
return get_cave_client(datastack).materialize.get_tables()


def fetch_neurons(x, *, lod=2,
with_synapses=True,
datastack='h01_c3_flat',
datastack='cortex65',
parallel=True,
max_threads=4,
**kwargs):
Expand Down Expand Up @@ -169,10 +169,10 @@ def fetch_neurons(x, *, lod=2,
"""

return cave_utils.fetch_neurons(
x,
x,
lod=lod,
with_synapses=with_synapses,
datastack=datastack,
datastack=_translate_datastack(datastack),
parallel=parallel,
max_threads=max_threads,
**kwargs
Expand Down Expand Up @@ -208,5 +208,5 @@ def get_voxels(x, mip=0, bounds=None, datastack='h01_c3_flat'):
x,
mip=mip,
bounds=bounds,
datastack=datastack
datastack=_translate_datastack(datastack)
)

0 comments on commit c8f1427

Please sign in to comment.