Skip to content

Note

Click here to download the full example code

neuPrint#

This tutorial shows how to fetch neurons from a neuPrint server.

NeuPrint is a service for presenting and analyzing connectomics data. It is used to host, for example, the Janelia EM reconstructions from a Drosophila hemibrain at https://neuprint.janelia.org/.

neuprint-python is a Python library that lets you query data directly from a neuPrint server. You can install it from PyPI:

pip3 install neuprint-python

navis.interfaces.neuprint wraps neuprint-python and adds a few new functions to fetch and convert data into NAVis objects.

# Import navis
import navis

# Import neuprint wrapper by navis
import navis.interfaces.neuprint as neu

First set up the connection: You can either pass your API token directly or store as NEUPRINT_APPLICATION_CREDENTIALS environment variable. The latter is the recommended way and we will use it here:

client = neu.Client(
    "https://neuprint.janelia.org/",
    # token="MYLONGTOKEN"  # use this to instead pass your token directly
    dataset="hemibrain:v1.2.1",
)

You can use all of neuprint's functions:

mbons, roi_info = neu.fetch_neurons(
    neu.SegmentCriteria(instance=".*MBON.*", regex=True)
)
mbons.head(3)
bodyId instance type pre post downstream upstream mito size status cropped statusLabel cellBodyFiber somaRadius somaLocation roiInfo notes inputRois outputRois
0 300972942 MBON14(a3)_R MBON14 543 13634 4336 13634 283 1566415099 Traced False Roughly traced None NaN None {'MB(R)': {'pre': 17, 'post': 13295, 'downstre... None [MB(+ACA)(R), MB(R), SIP(R), SLP(R), SMP(R), S... [MB(+ACA)(R), MB(R), SIP(R), SLP(R), SMP(R), S...
1 394225044 MBON14(a3)_L MBON14 187 5172 768 5172 142 359288547 Traced False Roughly traced None NaN None {'MB(L)': {'pre': 185, 'post': 5143, 'downstre... None [MB(L), SIP(L), SNP(L), aL(L)] [MB(L), SIP(L), SNP(L), aL(L)]
2 422725634 MBON06(B1>a)(AVM07)_L MBON06 1356 21000 9579 21000 765 3157840413 Traced False Roughly traced None NaN None {'MB(R)': {'pre': 777, 'post': 20390, 'downstr... None [CRE(-ROB,-RUB)(R), CRE(R), INP, MB(+ACA)(R), ... [CRE(-ROB,-RUB)(R), CRE(R), INP, MB(+ACA)(R), ...

NAVis has added three functions to neu:

Let's start by fetching the mesh for the right mushroom body ROI:

mb = neu.fetch_roi("MB(R)")
mb

Out:

<navis.Volume(name=MB(R), units=1 dimensionless, color=(0.85, 0.85, 0.85, 0.2), vertices.shape=(57913, 3), faces.shape=(115856, 3))>

Next, let's fetch the skeletons of all right MBONs:

mbon_skeletons = neu.fetch_skeletons(
    neu.SegmentCriteria(instance=".*MBON.*_R", regex=True), with_synapses=True
)
mbon_skeletons.head()

Out:

  0%|          | 0/1 [00:00<?, ?it/s]

100%|##########| 1/1 [00:00<00:00,  5.24it/s]
100%|##########| 1/1 [00:00<00:00,  5.24it/s]


  0%|          | 0/1 [00:00<?, ?it/s]


  0%|          | 0/1 [00:00<?, ?it/s]



  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 11.08it/s]


  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]





  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 10.46it/s]



  0%|          | 0/1 [00:00<?, ?it/s]





100%|##########| 1/1 [00:00<00:00,  6.60it/s]
100%|##########| 1/1 [00:00<00:00,  6.59it/s]






  0%|          | 0/1 [00:00<?, ?it/s]



100%|##########| 1/1 [00:00<00:00,  2.31it/s]
100%|##########| 1/1 [00:00<00:00,  2.31it/s]



100%|##########| 1/1 [00:00<00:00,  3.37it/s]
100%|##########| 1/1 [00:00<00:00,  3.37it/s]



  0%|          | 0/1 [00:00<?, ?it/s]



  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 10.36it/s]


100%|##########| 1/1 [00:00<00:00,  1.47it/s]
100%|##########| 1/1 [00:00<00:00,  1.47it/s]


  0%|          | 0/1 [00:00<?, ?it/s]


  0%|          | 0/1 [00:00<?, ?it/s]




100%|##########| 1/1 [00:00<00:00,  1.12it/s]
100%|##########| 1/1 [00:00<00:00,  1.12it/s]






100%|##########| 1/1 [00:00<00:00,  1.53it/s]
100%|##########| 1/1 [00:00<00:00,  1.53it/s]





  0%|          | 0/1 [00:00<?, ?it/s]


100%|##########| 1/1 [00:00<00:00,  3.27it/s]
100%|##########| 1/1 [00:00<00:00,  3.27it/s]





100%|##########| 1/1 [00:00<00:00,  7.91it/s]
100%|##########| 1/1 [00:00<00:00,  7.90it/s]



  0%|          | 0/1 [00:00<?, ?it/s]



100%|##########| 1/1 [00:00<00:00,  1.61it/s]
100%|##########| 1/1 [00:00<00:00,  1.61it/s]




  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 23.50it/s]




  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 14.08it/s]

100%|##########| 1/1 [00:00<00:00, 11.75it/s]




  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]





  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 14.54it/s]




  0%|          | 0/1 [00:00<?, ?it/s]

100%|##########| 1/1 [00:00<00:00,  1.33it/s]
100%|##########| 1/1 [00:00<00:00,  1.33it/s]

100%|##########| 1/1 [00:00<00:00, 13.24it/s]


  0%|          | 0/1 [00:00<?, ?it/s]





100%|##########| 1/1 [00:00<00:00,  4.30it/s]
100%|##########| 1/1 [00:00<00:00,  4.29it/s]




  0%|          | 0/1 [00:00<?, ?it/s]





  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 12.97it/s]





100%|##########| 1/1 [00:00<00:00,  1.96it/s]
100%|##########| 1/1 [00:00<00:00,  1.96it/s]




  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]

100%|##########| 1/1 [00:00<00:00,  2.71it/s]
100%|##########| 1/1 [00:00<00:00,  2.71it/s]


  0%|          | 0/1 [00:00<?, ?it/s]


100%|##########| 1/1 [00:01<00:00,  1.10s/it]
100%|##########| 1/1 [00:01<00:00,  1.10s/it]




100%|##########| 1/1 [00:00<00:00,  3.10it/s]
100%|##########| 1/1 [00:00<00:00,  3.09it/s]






100%|##########| 1/1 [00:00<00:00,  1.73it/s]
100%|##########| 1/1 [00:00<00:00,  1.73it/s]





100%|##########| 1/1 [00:00<00:00,  2.69it/s]
100%|##########| 1/1 [00:00<00:00,  2.69it/s]



  0%|          | 0/1 [00:00<?, ?it/s]



  0%|          | 0/1 [00:00<?, ?it/s]

100%|##########| 1/1 [00:00<00:00,  2.52it/s]
100%|##########| 1/1 [00:00<00:00,  2.52it/s]


  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]





  0%|          | 0/1 [00:00<?, ?it/s]



100%|##########| 1/1 [00:00<00:00,  2.54it/s]
100%|##########| 1/1 [00:00<00:00,  2.54it/s]



100%|##########| 1/1 [00:00<00:00,  2.18it/s]
100%|##########| 1/1 [00:00<00:00,  2.18it/s]



  0%|          | 0/1 [00:00<?, ?it/s]



  0%|          | 0/1 [00:00<?, ?it/s]




100%|##########| 1/1 [00:00<00:00,  1.96it/s]
100%|##########| 1/1 [00:00<00:00,  1.95it/s]




100%|##########| 1/1 [00:00<00:00,  9.22it/s]
100%|##########| 1/1 [00:00<00:00,  9.21it/s]



100%|##########| 1/1 [00:00<00:00,  7.37it/s]
100%|##########| 1/1 [00:00<00:00,  7.36it/s]



  0%|          | 0/1 [00:00<?, ?it/s]





100%|##########| 1/1 [00:00<00:00,  1.63it/s]
100%|##########| 1/1 [00:00<00:00,  1.63it/s]


100%|##########| 1/1 [00:00<00:00,  1.18it/s]
100%|##########| 1/1 [00:00<00:00,  1.18it/s]


  0%|          | 0/1 [00:00<?, ?it/s]



  0%|          | 0/1 [00:00<?, ?it/s]




  0%|          | 0/1 [00:00<?, ?it/s]
100%|##########| 1/1 [00:00<00:00, 21.06it/s]




  0%|          | 0/1 [00:00<?, ?it/s]





  0%|          | 0/1 [00:00<?, ?it/s]


100%|##########| 1/1 [00:00<00:00,  2.43it/s]
100%|##########| 1/1 [00:00<00:00,  2.43it/s]



  0%|          | 0/1 [00:00<?, ?it/s]




100%|##########| 1/1 [00:00<00:00,  2.43it/s]
100%|##########| 1/1 [00:00<00:00,  2.43it/s]


100%|##########| 1/1 [00:00<00:00,  1.98it/s]
100%|##########| 1/1 [00:00<00:00,  1.98it/s]






100%|##########| 1/1 [00:00<00:00,  2.75it/s]
100%|##########| 1/1 [00:00<00:00,  2.75it/s]




100%|##########| 1/1 [00:00<00:00,  2.07it/s]
100%|##########| 1/1 [00:00<00:00,  2.07it/s]



100%|##########| 1/1 [00:00<00:00,  3.03it/s]
100%|##########| 1/1 [00:00<00:00,  3.03it/s]


  0%|          | 0/1 [00:00<?, ?it/s]


  0%|          | 0/1 [00:00<?, ?it/s]


100%|##########| 1/1 [00:00<00:00,  3.94it/s]
100%|##########| 1/1 [00:00<00:00,  3.94it/s]


100%|##########| 1/1 [00:01<00:00,  1.01s/it]
100%|##########| 1/1 [00:01<00:00,  1.01s/it]
type name id n_nodes n_connectors n_branches n_leafs cable_length soma units
0 navis.TreeNeuron MBON23(a2sp)_R 423382015 14570 5241 1224 1253 458821.21875 2379.0 8 nanometer
1 navis.TreeNeuron MBON19(a2p3p)_R 423774471 6944 1783 549 561 246499.53125 1781.0 8 nanometer
2 navis.TreeNeuron MBON15-like(a'1a'2)_R 457175171 9523 2379 587 602 338010.50000 9282.0 8 nanometer
3 navis.TreeNeuron MBON16-like(a'3a)_R 457196643 10198 4142 933 947 421831.40625 6297.0 8 nanometer
4 navis.TreeNeuron MBON14(a3)_R 300972942 22843 14177 2298 2370 758536.50000 NaN 8 nanometer

Co-visualize the MBONs and the MB volume:

navis.plot3d(
    [mbon_skeletons[0], mb],
    legend=False,  # Hide the legend (more space for the plot)
)

Last (but not least), let's make a 2d plot for the tutorial's thumbnail:

import matplotlib.pyplot as plt

fig, ax = navis.plot2d(
    [mbon_skeletons[0], mb],
    c=(0, 0, 0, 1),  # Make the neuron black
    method="3d",
    connectors=True,
    linewidth=0.5,  # Make neuron a bit thinner to emphasize the synapses
    view=("x", "-z"),
)

plt.tight_layout()

tutorial remote 00 neuprint

All NAVis functions for analysis & visualization should work on these neurons. If not, please open an issue on Github.

Total running time of the script: ( 0 minutes 37.008 seconds)

Download Python source code: tutorial_remote_00_neuprint.py

Download Jupyter notebook: tutorial_remote_00_neuprint.ipynb

Gallery generated by mkdocs-gallery