{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Import to make brainrender embed scenes in jupyter notebooks\n",
    "from brainrender.scene import Scene\n",
    "from brainrender import __version__, settings\n",
    "from rich import print\n",
    "from vedo import embedWindow\n",
    "\n",
    "from myterial import blue_light, salmon\n",
    "\n",
    "settings.SHOW_AXES = False\n",
    "settings.WHOLE_SCREEN = False\n",
    "\n",
    "embedWindow(None)\n",
    "if not __version__=='2.0.2.9':\n",
    "    raise ValueError(f'This executable is meant to work with brainrender 2.0.2.9, not: {__version__}')\n",
    "\n",
    "def make_scene(species='mouse'):\n",
    "    if species == 'mouse':\n",
    "        scene = Scene()\n",
    "    elif species == 'zfish':\n",
    "        scene = Scene(atlas_name=\"mpin_zfish_1um\",)\n",
    "    else:\n",
    "        raise ValueError(f'Species not supported: {species}')\n",
    "    scene.root._needs_silhouette = True\n",
    "    scene.root._silhouette_kwargs['lw'] = 1\n",
    "    return scene\n",
    "    \n",
    "def render_scene(scene, **kwargs):\n",
    "    print(f'[{blue_light}]Rendering scene, press \"[{salmon} b]q[/{salmon} b]\" to close')\n",
    "    scene.render(**kwargs)\n",
    "\n",
    "    # close when done\n",
    "    scene.plotter.close()"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Introduction\n",
    "\n",
    "Understanding how nervous systems generate behavior benefits from gathering multidimensional data from different individual animals. These data range from neural activity recordings and anatomical connectivity, to cellular and subcellular information such as morphology and gene expression profiles. These different types of data should ideally all be in register so that, for example, neural activity in one brain region can be interpreted in light of the connectivity of that region or the cell types it contains. Such registration, however, is challenging. Often it is not technically feasible to obtain multidimensional data in a single experiment, and registration to a common reference frame must be performed post hoc. Even for the same experiment type, registration is necessary to allow comparisons across individual animals [@bib25].\n",
    "\n",
    "While different types of references can in principle be used, neuroanatomical location is a natural and most commonly used reference frame [@bib6; @bib21; @bib2; @bib15]. In recent years, several high-resolution three-dimensional (3D) digital brain atlases have been generated for model species commonly used in neuroscience [@bib32; @bib21; @bib2; @bib15]. These atlases provide a framework for registering different types of data across macro- and microscopic scales. A key output of this process is the visualization of all datasets in register. Given the intrinsically 3D geometry of brain structures and individual neurons, 3D renderings are more readily understandable and can provide more information when compared to two dimensional images. Exploring interactive 3D visualizations of the brain gives an overview of the relationship between datasets and brain regions and helps generating intuitive insights about these relationships. This is particularly important for large-scale datasets such as the ones generated by open-science projects like MouseLight [@bib33] and the Allen Mouse Connectome [@bib21]. In addition, high-quality 3D visualizations facilitate the communication of experimental results registered to brain anatomy.\n",
    "\n",
    "Generating custom 3D visualizations of atlas data requires programmatic access to the atlas. While some of the recently developed atlases provide an API (Application Programming Interface) for accessing atlas data [@bib32; @bib15], rendering these data in 3D remains a demanding and time-consuming task that requires significant programming skills. Moreover, visualization of user-generated data registered onto the atlas requires an interface between the user data and the atlas data, which further requires advanced programming knowledge and extensive development. There is therefore the need for software that can simplify the process of visualizing 3D anatomical data from available atlases and from new experimental datasets.\n",
    "\n",
    "Currently, existing software packages such as cocoframer [@bib16], BrainMesh [@bib34], and SHARPTRACK [@bib24] provide some functionality for 3D rendering of anatomical data. These packages, however, are only compatible with a single atlas and cannot be used to render data from different atlases or different animal species. Achieving this requires adapting the existing software to the different atlases datasets or developing new dedicated software all together, at the cost of significant additional efforts, often duplicated. An important limitation of the currently available software is that it frequently does not support rendering of non-atlas data, such as data from publicly available datasets (e.g. MouseLight) or produced by individual laboratories. This capability is essential for easily mapping newly generated data onto brain anatomy at high resolution and produce visualizations of multidimensional datasets. More advanced software such as natverse [@bib5] offers extensive data visualization and analysis functionality, but currently, it is mostly restricted to data obtained from the _Drosophila_ brain. Simple Neurite Tracer [@bib3], an ImageJ-based software, can render neuronal morphological data from public and user-generated datasets and is compatible with several reference atlases. However, this software does not support visualization of data other than neuronal morphological reconstructions nor can it be easily adapted to work with different or new atlases beyond the ones already supported. Finally, software such as MagellanMapper [@bib35] can be used to visualize and analyze large 3D brain imaging datasets, but the visualization is restricted to one data item (i.e. images from one individual brain). It is therefore not possible to combine data from different sources into a single visualization. Ideally, a rendering software should work with 3D mesh data instead of 3D voxel image data to allow the creation of high-quality renderings and facilitate the integration of data from different sources.\n",
    "\n",
    "An additional consideration is that existing software tools for programmatic neuroanatomical renderings have been developed in programming languages such as R and Matlab, and there is currently no available alternative in Python. The popularity of Python within the neuroscientific community has grown tremendously in recent years [@bib19]. Building on Python’s simple syntax and free, high-quality data processing and analysis packages, several open-source tools directly aimed at neuroscientists have been written in Python and are increasingly used (e.g., [@bib18]; [@bib22]; [@bib31]). Developing a python-based software for universal generation of 3D renderings of anatomically registered data can therefore take advantage of the increasing strength and depth of the python neuroscience community for testing and further development.\n",
    "\n",
    "For these reasons, we have developed brainrender: an open-source python package for creating high-resolution, interactive 3D renderings of anatomically registered data. Brainrender is written in Python and integrated with BrainGlobe’s AtlasAPI [@bib7] to interface natively with different atlases without need for modification. Brainrender supports the visualization of data acquired with different techniques and at different scales. Data from multiple sources can be combined in a single rendering to produce rich and informative visualizations of multidimensional data. Brainrender can also be used to create high-resolution, publication-ready images and videos (see [@bib31]; [@bib1]), as well as interactive online visualizations to facilitate the dissemination of anatomically registered data. Finally, using brainrender requires minimal programming skills, which should accelerate the adoption of this new software by the research community. All brainrender code is available at the GitHub repository together with extensive online documentation and examples.\n",
    "\n",
    "# Results\n",
    "\n",
    "## Design principles and implementation\n",
    "\n",
    "A core design goal for brainrender was to generate a visualization software compatible with any reference atlas, thus providing a generic and flexible tool ([Figure 1A](#fig1)). To achieve this goal, brainrender has been developed as part of the BrainGlobe’s computational neuroanatomy software suite. In particular, we integrated brainrender directly with BrainGlobe’s AtlasAPI [@bib7]. The AtlasAPI can download and access atlas data from several supported atlases in an unified format. Brainrender uses the AtlasAPI to access 3D mesh data from individual brain regions as well as metadata about the hierarchical organization of the brain’s structures ([Figure 1B](#fig1)). Thus, the same programming interface can be used to access data from any atlas (see code examples in [Figure 2](#fig2)), including recently developed ones (e.g. the enhanced and unified mouse brain atlas, [@bib6]).\n",
    "\n",
    "figure: Figure 1.\n",
    ":::\n",
    "![](article.ipynb.media/fig1.jpg)\n",
    "\n",
    "### Design principles.\n",
    "\n",
    "(**A**) Schematic illustration of how different types of data can be loaded into brainrender using either brainrender’s own functions, software packages from the BrainGlobe suite, or custom Python scripts. All data loaded into brainrender is converted to a unified format, which simplifies the process of visualizing data from different sources. (**B**) Using brainrender with different atlases. Visualization of brain atlas data from three different atlases using brainrender. Left, Allen atlas of the mouse brain showing the superficial (SCs) and motor (SCm) subdivisions of the superior colliculus and the Zona Incerta (data from [@bib32]). Middle, visualization of the cerebellum and tectum in the larval zebrafish brain (data from [@bib15]). Right, visualization of the precentral gyrus, postcentral gyrus, and temporal lobe of the human brain (data from [@bib8]). (**C**) The brainrender GUI. Mouse, human, and zebrafish larvae drawings from [scidraw.io](https://scidraw.io/) ([doi.org/10.5281/zenodo.3925991](http://doi.org/10.5281/zenodo.3925991), [doi.org/10.5281/zenodo.3926189](http://doi.org/10.5281/zenodo.3926189), [doi.org/10.5281/zenodo.3926123](http://doi.org/10.5281/zenodo.3926123)).\n",
    ":::\n",
    "{#fig1}\n",
    "\n",
    "\n",
    "figure: Figure 2.\n",
    ":::\n",
    "![](article.ipynb.media/fig2.jpg)\n",
    "\n",
    "### Code examples.\n",
    "\n",
    "Example python code for visualizing brain regions in the mouse and larval zebrafish brains. The same commands can be used for both atlases and switching between atlases can be done by simply specifying which atlas to use when creating the visualization. Further examples can be found in brainrender’s GitHub repository.\n",
    ":::\n",
    "{#fig2}\n"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "\n",
    "The second major design principle was to enable rendering of any data type that can be registered to a reference atlas, either from publicly available datasets or from individual laboratories. Brainrender can directly visualize data produced with any analysis software from the BrainGlobe suite, including cellfinder [@bib30] and brainreg [@bib31]. In addition, brainrender provides functionality for easily loading and visualizing commonly used data types such as .npy files with cell coordinates or image data, .obj, and .stl files with 3D mesh data and .json files with streamlines data for mesoscale connectomics. Additional information about the file formats accepted by brainrender can be found in the online documentation. Brainglobe’s software suite also includes imio which can load data from several file types (e.g. tiff and .nii), and additional file formats can be loaded through the numerous packages provided by the python ecosystem. Finally, the existing loading functionality can be easily expanded to support user-specific needs by directly plugging in custom user code into the brainrender interface ([Figure 1A](#fig1)).\n",
    "\n",
    "One of the goals of brainrender is to facilitate the creation of high-resolution images, animated videos, and interactive online visualizations from any anatomically registered data. Brainrender uses vedo as the rendering engine [@bib20], a state-of-the-art tool that enables fast, high-quality rendering with minimal hardware requirements.\n",
    "\n",
    "High-resolution renderings of rich 3D scenes can be produced rapidly (e.g. 10,000 cells in less than 2 s) in standard laptop or desktop configurations. Benchmarking tests across different operating systems and machine configurations show that using a GPU can increase the framerate of interactive renderings by a factor of 3.5 (see [Tables 1](#table1) and [2](#table2) in Materials and methods). This performance increase, however, depends on the complexity of the pre-processing steps, such as data loading and mesh generation, which run on the CPU. As one the main goals of brainrender is to produce high-resolution visualizations, we have made the rendering quality independent of hardware configuration, which only affects the rendering time. Animated videos and online visualizations can be produced with a few lines of code in brainrender. Several options are provided for easily customizing the appearance of rendered objects, thus enabling high-quality, rich data visualizations that combine multiple data sources.\n",
    "\n",
    "table: Table 1.\n",
    ":::\n",
    "### Machine configurations used for benchmark tests.\n",
    "\n",
    "| N | OS                        | CPU                                     | GPU                        |\n",
    "| - | ------------------------- | --------------------------------------- | -------------------------- |\n",
    "| 1 | Macos Mojave 10.14.6      | 2.3 ghz Intel Core i9                   | Radeon Pro 560 × 4 GB GPU  |\n",
    "| 2 | Ubuntu 18.04.2 LTS x86 64 | Intel i7-8565U (x) @ 4.5 ghz            | NO GPU                     |\n",
    "| 3 | Windows 10                | Intel(R) Core i7-7700HQ 2.8 ghz         | NO GPU                     |\n",
    "| 4 | Windows 10                | Intel(R) Xeon(R) CPU E5-2643 v3 3.4 ghz | NVIDIA geforce GTX 1080 Ti |\n",
    ":::\n",
    "{#table1}\n",
    "\n",
    "table: Table 2.\n",
    ":::\n",
    "### Benchmark tests results.\n",
    "\n",
    "The number of actors refers to the total number of elements rendered, and the number of vertices refers to the total number of mesh vertices in the rendering.\n",
    "\n",
    "| Test                | Machine | GPU | # actors | # vertices | FPS    | Run duration |\n",
    "| ------------------- | ------- | --- | -------- | ---------- | ------ | ------------ |\n",
    "| 10 k cells          | 1       | Yes | 3        | 1,029,324  | 24.76  | 0.81         |\n",
    "|                     | 2       | No  | 3        | 1,029,324  | 22.46  | 1.16         |\n",
    "|                     | 3       | No  | 3        | 1,029,324  | 20.00  | 1.41         |\n",
    "|                     | 4       | Yes | 3        | 1,029,324  | 100.00 | 1.34         |\n",
    "| 100 k cells         | 1       | Yes | 3        | 9,849,324  | 18.87  | 3.23         |\n",
    "|                     | 2       | No  | 3        | 9,849,324  | 14.91  | 4.34         |\n",
    "|                     | 3       | No  | 3        | 9,849,324  | 0.43   | 7.94         |\n",
    "|                     | 4       | Yes | 3        | 9,849,324  | 1.20   | 1.13         |\n",
    "| 1 M cells           | 1       | Yes | 3        | 98,049,324 | 2.65   | 31.01        |\n",
    "|                     | 2       | No  | 3        | 98,049,324 | 2.55   | 96.49        |\n",
    "|                     | 3       | No  | 3        | 98,049,324 | 0.03   | 86.75        |\n",
    "|                     | 4       | Yes | 3        | 9,8049,324 | 0.13   | 36.57        |\n",
    "| Slicing 10 k cells  | 1       | Yes | 3        | 237,751    | 37.64  | 0.96         |\n",
    "|                     | 2       | No  | 3        | 237,751    | 39.10  | 1.25         |\n",
    "|                     | 3       | No  | 3        | 237,751    | 26.32  | 1.88         |\n",
    "|                     | 4       | Yes | 3        | 237,751    | 200.00 | 1.34         |\n",
    "| Slicing 100 k cells | 1       | Yes | 3        | 276,092    | 31.79  | 7.77         |\n",
    "|                     | 2       | No  | 3        | 276,092    | 25.98  | 9.09         |\n",
    "|                     | 3       | No  | 3        | 276,092    | 21.28  | 16.88        |\n",
    "|                     | 4       | Yes | 3        | 276,092    | 111.11 | 9.65         |\n",
    "| Slicing 1 M cells   | 1       | Yes | 3        | 275,069    | 11.23  | 91.31        |\n",
    "|                     | 2       | No  | 3        | 275,069    | 5.39   | 104.79       |\n",
    "|                     | 3       | No  | 3        | 275,069    | 5.03   | 158.99       |\n",
    "|                     | 4       | Yes | 3        | 275,069    | 37.04  | 97.43        |\n",
    "| Brain regions       | 1       | Yes | 1678     | 1,864,388  | 9.38   | 11.78        |\n",
    "|                     | 2       | No  | 1678     | 1,864,388  | 7.61   | 27.40        |\n",
    "|                     | 3       | No  | 1678     | 1,864,388  | 6.49   | 46.79        |\n",
    "|                     | 4       | Yes | 1678     | 1,864,388  | 11.90  | 35.83        |\n",
    "| Animation           | 1       | Yes | 8        | 96,615     | 9.91   | 18.98        |\n",
    "|                     | 2       | No  | 8        | 96,615     | 22.12  | 12.63        |\n",
    "|                     | 3       | No  | 8        | 96,615     | 15.15  | 11.92        |\n",
    "|                     | 4       | Yes | 8        | 96,615     | 47.62  | 12.29        |\n",
    "| Volume              | 1       | Yes | 12       | 49,324     | 1.79   | 2.31         |\n",
    "|                     | 2       | No  | 12       | 49,324     | 1.66   | 1.95         |\n",
    "|                     | 3       | No  | 12       | 49,324     | 3.55   | 2.15         |\n",
    "|                     | 4       | Yes | 12       | 49,324     | 23.26  | 1.21         |\n",
    ":::\n",
    "{#table2}\n",
    "\n",
    "Finally, we aimed for brainrender to empower scientists with little or no programming experience to generate advanced visualizations of their anatomically registered data. To make brainrender as user-friendly as possible we have produced extensive documentation, tutorials and examples for installing and using the software. We have also developed a graphic user interface (GUI) to access most of brainrender’s core functionality. This GUI can be used to perform actions such as rendering of brain regions and labeled cells (e.g. from cellfinder) and creating images of the rendered data, without writing custom python code ([Figure 1C](#fig1)), ([Video 1](#video1)).\n",
    "\n",
    "\n",
    "\n",
    "## Visualizing brain regions and other structures\n",
    "\n",
    "A key element of any neuroanatomical visualization is the rendering of the entire outline of the brain as well as the borders of brain regions of interest. In brainrender, this can easily be achieved by specifying which brain regions to include in the rendering. The software will then use BrainGlobe’s AtlasAPI to load the 3D data and subsequently renders them ([Figure 1B](#fig1)).\n",
    "\n",
    "Brainrender can also render brain areas defined by factors other than anatomical location, such as gene expression levels or functional properties. These can be loaded either directly as 3D mesh data after processing with dedicated software (e.g., [@bib30]; [@bib27]; [@bib13]; [Figure 3A](#fig3)) or as 3D volumetric data ([Figure 3E](#fig3)). For the latter, brainrender takes care of the conversion of voxels into a 3D mesh for rendering. Furthermore, custom 3D meshes can be created to visualize different types of data. For example, brainrender can import JSON files with tractography connectivity data and create ‘streamlines’ to visualize efferent projections from a brain region of interested ([Figure 3B](#fig3)).\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #90caf9; text-decoration-color: #90caf9\">Rendering scene, press </span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #ff7043; text-decoration-color: #ff7043; font-weight: bold\">q</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\"> to close</span>\n</pre>\n"
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Figure 3\n",
    "'''\n",
    "\n",
    "figure: Figure 3.\n",
    ":::\n",
    "![](article.ipynb.media/fig3.jpg)\n",
    "\n",
    "### Visualizing different types of data in brainrender.\n",
    "\n",
    "(**A**) Spread of fluorescence labeling following viral injection of AAV2-CRE-eGPF in the superior colliculus of two FLEX-TdTomato mice. 3D objects showing the injection sites were created using custom python scripts following acquisition of a 3D image of the entire brain with serial two-photon tomography and registration of the image data to the atlas’ template (with brainreg, [@bib30]). (**B**) Streamlines visualization of efferent projections from the mouse primary motor cortex following injection of an anterogradely transported virus expressing fluorescent proteins (original data from [@bib21]), downloaded from (Neuroinformatics NL with brainrender). (**C**) Visualization of the location of several implanted neuropixel probes from multiple mice (data from [@bib28]). Dark salmon colored tracks show probes going through both primary/anterior visual cortex (VISp/VISa) and the dorsal lateral geniculate nucleus of the thalamus. (**D**) Single periaqueductal gray (PAG) neuron. The PAG and superior colliculus are also shown. The neuron’s morphology was reconstructed by targeting the expression of fluorescent proteins in excitatory neurons in the PAG via an intersectional viral strategy, followed by imaging of cleared tissue and manual reconstruction of the neuron’s morphology with Vaa3D software. Data were registered to the Allen atlas with SHARPTRACK [@bib24]. The 3D data was saved as a .stl file and loaded directly into brainrender. (**E**) Gene expression data. Left, expression of genes ‘brn3c’ and ‘nk1688CGt’ in the tectum of the larval zebrafish brain (gene expression data from fishatlas.neuro.mpg.de, 3D objects created with custom python scripts). Right, expression of gene ‘Gpr161’ in the mouse hippocampus (gene expression data from [@bib32]), downloaded with brainrender (3D objects created with brainrender). Colored voxels show voxels with high gene expressions. The CA1 field of the hippocampus is also shown.\n",
    ":::\n",
    "{#fig3}\n",
    "'''\n",
    "from myterial import indigo as scmcol\n",
    "from myterial import indigo_dark as scscol\n",
    "from myterial import blue_darker as zicol\n",
    "\n",
    "\n",
    "\n",
    "# Panel (A)\n",
    "scene = make_scene()\n",
    "for reg, col in zip((\"SCm\", \"SCs\", \"ZI\"), (scmcol, scscol, zicol)):\n",
    "    scene.add_brain_region(reg, color=col, silhouette=True)\n",
    "render_scene(scene)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\">downloading <span style=\"color: #729c1f; text-decoration-color: #729c1f\">━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━</span> <span style=\"color: #800080; text-decoration-color: #800080\">100%</span> <span style=\"color: #008080; text-decoration-color: #008080\">0:00:00</span>\n</pre>\n"
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "text/html": "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #90caf9; text-decoration-color: #90caf9\">Rendering scene, press </span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #ff7043; text-decoration-color: #ff7043; font-weight: bold\">q</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\"> to close</span>\n</pre>\n"
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Panel (B)\n",
    "from myterial import blue_grey\n",
    "from myterial import salmon_dark as streamlinescol\n",
    "\n",
    "from brainrender.atlas_specific import get_streamlines_for_region\n",
    "from brainrender.actors.streamlines import Streamlines\n",
    "\n",
    "scene = make_scene()\n",
    "\n",
    "# get streamlines data\n",
    "streams = get_streamlines_for_region(\"MOp\")\n",
    "\n",
    "# add Streamlines actors\n",
    "s = scene.add(Streamlines(streams[0], color=streamlinescol, alpha=1))\n",
    "\n",
    "# add brain regions\n",
    "th = scene.add_brain_region(\n",
    "    \"TH\", alpha=0.45, silhouette=False, color=blue_grey\n",
    ")\n",
    "\n",
    "\n",
    "render_scene(scene)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #90caf9; text-decoration-color: #90caf9\">Rendering scene, press </span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #ff7043; text-decoration-color: #ff7043; font-weight: bold\">q</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\"> to close</span>\n</pre>\n"
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Panel (C)\n",
    "from brainrender.actors import Points\n",
    "\n",
    "try:\n",
    "    from oneibl.onelight import ONE\n",
    "except ImportError:\n",
    "    %pip install ibllib\n",
    "    from oneibl.onelight import ONE\n",
    "\n",
    "from myterial import blue_grey, blue_grey_dark, salmon_light, salmon_darker\n",
    "\n",
    "scene = make_scene()\n",
    "\n",
    "\n",
    "# download probe data from ONE\n",
    "one = ONE()\n",
    "one.set_figshare_url(\"https://figshare.com/articles/steinmetz/9974357\")\n",
    "\n",
    "# select sessions with trials\n",
    "sessions = one.search([\"trials\"])\n",
    "\n",
    "# get probe locations\n",
    "probes_locs = []\n",
    "for sess in sessions:\n",
    "    probes_locs.append(one.load_dataset(sess, \"channels.brainLocation\"))\n",
    "\n",
    "# get single probe tracks\n",
    "for locs in probes_locs:\n",
    "    k = int(len(locs) / 374.0)\n",
    "\n",
    "    for i in range(k):\n",
    "        points = locs[i * 374 : (i + 1) * 374]\n",
    "        regs = points.allen_ontology.values\n",
    "\n",
    "        # color based on if probes go through selected regions\n",
    "        if \"LGd\" in regs and (\"VISa\" in regs or \"VISp\" in regs):\n",
    "            color = salmon_darker\n",
    "            alpha = 1\n",
    "            sil = 1\n",
    "        elif \"VISa\" in regs:\n",
    "            color = salmon_light\n",
    "            alpha = 1\n",
    "            sil = 0.5\n",
    "        else:\n",
    "            continue\n",
    "\n",
    "        # render channels as points\n",
    "        spheres = Points(\n",
    "            points[[\"ccf_ap\", \"ccf_dv\", \"ccf_lr\"]].values,\n",
    "            colors=color,\n",
    "            alpha=alpha,\n",
    "            radius=30,\n",
    "        )\n",
    "        spheres = scene.add(spheres)\n",
    "        scene.add_silhouette(spheres, lw=sil)\n",
    "\n",
    "\n",
    "# Add brain regions\n",
    "visp, lgd = scene.add_brain_region(\n",
    "    \"VISp\",\n",
    "    \"LGd\",\n",
    "    hemisphere=\"right\",\n",
    "    alpha=0.3,\n",
    "    silhouette=False,\n",
    "    color=blue_grey_dark,\n",
    ")\n",
    "visa = scene.add_brain_region(\n",
    "    \"VISa\",\n",
    "    hemisphere=\"right\",\n",
    "    alpha=0.2,\n",
    "    silhouette=False,\n",
    "    color=blue_grey,\n",
    ")\n",
    "th = scene.add_brain_region(\n",
    "    \"TH\", alpha=0.3, silhouette=False, color=blue_grey_dark\n",
    ")\n",
    "th.wireframe()\n",
    "scene.add_silhouette(lgd, visp, lw=2)\n",
    "\n",
    "render_scene(scene)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": "<pre style=\"white-space:pre;overflow-x:auto;line-height:normal;font-family:Menlo,'DejaVu Sans Mono',consolas,'Courier New',monospace\"><span style=\"color: #90caf9; text-decoration-color: #90caf9\">Rendering scene, press </span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #ff7043; text-decoration-color: #ff7043; font-weight: bold\">q</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\">\"</span><span style=\"color: #90caf9; text-decoration-color: #90caf9\"> to close</span>\n</pre>\n"
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "# Panel (D)\n",
    "from brainrender.actors import Point\n",
    "\n",
    "from myterial import blue_grey_light as scmcol\n",
    "from myterial import blue_grey as pagcol\n",
    "from myterial import salmon_dark as neuroncol\n",
    "\n",
    "cam = {\n",
    "    \"pos\": (-16954, 2456, -3961),\n",
    "    \"viewup\": (0, -1, 0),\n",
    "    \"clippingRange\": (22401, 34813),\n",
    "    \"focalPoint\": (7265, 2199, -5258),\n",
    "    \"distance\": 24256,\n",
    "}\n",
    "\n",
    "scene = make_scene()\n",
    "\n",
    "# add brain regions\n",
    "pag = scene.add_brain_region(\"PAG\", alpha=0.4, silhouette=False, color=pagcol)\n",
    "scm = scene.add_brain_region(\"SCm\", alpha=0.3, silhouette=False, color=scmcol)\n",
    "\n",
    "# add neuron mesh\n",
    "neuron = scene.add(r\"C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\yulins_neuron.stl\")\n",
    "neuron.c(neuroncol)\n",
    "\n",
    "# add sphere at soma location\n",
    "soma_pos = [9350.51912036, 2344.33986638, 5311.18297796]\n",
    "point = scene.add(Point(soma_pos, color=neuroncol, radius=25))\n",
    "scene.add_silhouette(point, lw=1, color=\"k\")\n",
    "scene.add_silhouette(neuron, lw=1, color=\"k\")\n",
    "\n",
    "# slice scene repeatedly to cut out region of interest\n",
    "p = [9700, 1, 800]\n",
    "plane = scene.atlas.get_plane(pos=p, plane=\"frontal\")\n",
    "scene.slice(plane, actors=[scm, pag, scene.root])\n",
    "\n",
    "p = [11010, 5000, 5705]\n",
    "plane = scene.atlas.get_plane(pos=p, norm=[0, -1, 0])\n",
    "scene.slice(plane, actors=[scene.root])\n",
    "\n",
    "# render\n",
    "render_scene(scene, camera=cam, zoom=9)\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "metadata": {},
   "outputs": [
    {
     "ename": "FileNotFoundError",
     "evalue": "File C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_brn3c_GFP.obj not found",
     "output_type": "error",
     "traceback": [
      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
      "\u001b[0;31mFileNotFoundError\u001b[0m                         Traceback (most recent call last)",
      "\u001b[0;32m<ipython-input-5-234031a5c77b>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m     19\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     20\u001b[0m \u001b[0;31m# add custom meshes from file, but don't show them (alpha=0)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 21\u001b[0;31m \u001b[0mm\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mscene\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mr\"C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_brn3c_GFP.obj\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcolor\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mgene1_color\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0malpha\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m     22\u001b[0m \u001b[0mm2\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mscene\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mr\"C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_nk1688CGt_GFP.obj\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcolor\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mgene2_color\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0malpha\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     23\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m~/miniconda3/envs/brainrender/lib/python3.7/site-packages/brainrender/scene.py\u001b[0m in \u001b[0;36madd\u001b[0;34m(self, names, classes, transform, *items, **kwargs)\u001b[0m\n\u001b[1;32m    163\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    164\u001b[0m             \u001b[0;32melif\u001b[0m \u001b[0misinstance\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mstr\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mPath\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 165\u001b[0;31m                 \u001b[0mmesh\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mload_mesh_from_file\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m    166\u001b[0m                 \u001b[0mname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mname\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0mPath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mitem\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m    167\u001b[0m                 \u001b[0m_class\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0m_class\u001b[0m \u001b[0;32mor\u001b[0m \u001b[0;34m\"from file\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;32m~/miniconda3/envs/brainrender/lib/python3.7/site-packages/brainrender/_io.py\u001b[0m in \u001b[0;36minner\u001b[0;34m(*args, **kwargs)\u001b[0m\n\u001b[1;32m     66\u001b[0m         \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mPath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mexists\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     67\u001b[0m             raise FileNotFoundError(\n\u001b[0;32m---> 68\u001b[0;31m                 \u001b[0;34mf\"File {args[0]} not found\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m     69\u001b[0m             )  # pragma: no cover\n\u001b[1;32m     70\u001b[0m         \u001b[0;32mreturn\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
      "\u001b[0;31mFileNotFoundError\u001b[0m: File C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_brn3c_GFP.obj not found"
     ]
    }
   ],
   "source": [
    "# Panel (E)\n",
    "from brainrender.actors import Volume\n",
    "from myterial import purple_dark as gene2_color\n",
    "from myterial import purple_light as gene1_color\n",
    "\n",
    "cam = cam = {\n",
    "    \"pos\": (-835, -1346, 1479),\n",
    "    \"viewup\": (0, -1, 0),\n",
    "    \"clippingRange\": (1703, 3984),\n",
    "    \"focalPoint\": (334, 200, -342),\n",
    "    \"distance\": 2660,\n",
    "}\n",
    "\n",
    "\n",
    "# shift parameters to adjust meshes position\n",
    "SHIFT = [-20, 15, 30]  # fine tune pos\n",
    "\n",
    "scene = make_scene(species='zfish')\n",
    "\n",
    "# add custom meshes from file, but don't show them (alpha=0)\n",
    "m = scene.add(r\"C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_brn3c_GFP.obj\", color=gene1_color, alpha=0)\n",
    "m2 = scene.add(r\"C:\\Users\\Federico\\Documents\\GitHub\\BrainRender\\paper\\data\\T_AVG_nk1688CGt_GFP.obj\", color=gene2_color, alpha=0)\n",
    "\n",
    "# convert meshes to volumetric data showing gene expression density\n",
    "vol1 = Volume(m.mesh.density(), as_surface=True, min_value=20000, cmap=\"Reds\")\n",
    "vol1.lw(1)\n",
    "scene.add(vol1)\n",
    "\n",
    "vol2 = Volume(m2._mesh.density(), as_surface=True, min_value=600, cmap=\"Blues\")\n",
    "vol2.lw(1)\n",
    "scene.add(vol2)\n",
    "\n",
    "render_scene(scene, zoom=2.5, camera=cam)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "\n",
    "Brainrender also simplifies visualizing the location of devices implanted in the brain for neural activity recordings or manipulations, such as electrodes or optical fibers. Post hoc histological images taken to confirm the correct placement of the device can be registered to a reference atlas using appropriate software, and the registered data can be imported into brainrender ([Figure 3C](#fig3)). This type of visualization greatly facilitates cross-animal comparisons and helps data interpretation within and across research groups.\n",
    "\n",
    "Finally, brainrender can be used to visualize any object represented by the most commonly used file formats for 3D design (e.g. .obj, .stl), thus ensuring that brainrender can flexibly adapt to the visualization needs of the user ([Figure 3D](#fig3)).\n",
    "\n",
    "## Individual neurons and mesoscale connectomics\n",
    "\n",
    "Recent advances in large field of view and whole-brain imaging allow the generation of brain-wide data at single neuron resolution. Having a platform for visualizing these datasets with ease is critical for exploratory data analyses. Several open-source software packages are available for registering large amounts of such imaging data and automatically identify labeled cells (e.g. expressing fluorescent proteins) [@bib30; @bib9; @bib10; @bib23]. This processing step outputs a table of coordinates for a set of labeled cells, which can be directly imported into brainrender to visualize a wealth of anatomical data at cellular resolution ([Figure 4A](#fig4))."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Figure 4\n",
    "\n",
    "'''\n",
    "\n",
    "figure: Figure 4.\n",
    ":::\n",
    "![](article.ipynb.media/fig4.jpg)\n",
    "\n",
    "### Visualizing cell location and morphological data.\n",
    "\n",
    "(**A**) Visualizing the location of labeled cells. Left, visualization of fluorescently labeled cells identified using cellfinder (data from [@bib31]). Right, visualization of functionally defined clusters of regions of interest in the brain of a zebrafish larvae during a visuomotor task (data from [@bib17]). (**B**) Visualizing neuronal morphology data. Left, three secondary motor cortex neurons projecting to the thalamus (data from [@bib33], downloaded with morphapi from [neuromorpho.org](http://neuromorpho.org/), [@bib4]). Right, morphology of cerebellar neurons in larval zebrafish (data from [@bib15]), (downloaded with morphapi). In the left panel of (**A** and **B**), the brain outline was sliced along the midline to expose the data.\n",
    ":::\n",
    "{#fig4}\n",
    "'''"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "\n",
    "\n",
    "Beyond the location of cell bodies, visualizing the entire dendritic and axonal arbors of single neurons registered to a reference atlas is important for understanding the distribution of neuronal signals across the brain. Single-cell morphologies are often complex 3D structures and therefore poorly represented in 2D images. Generating 3D interactive renderings is thus important to facilitate the exploration of this type of data. Brainrender can be used to parse and render .swc files containing morphological data, and it is fully integrated with morphapi, a software for downloading morphological data from publicly available datasets (e.g. from [neuromorpho.org](http://neuromorpho.org/), [@bib4]; [Figure 4B](#fig4)).\n",
    "\n",
    "## Producing figures, videos, and interactive visualizations with brainrender\n",
    "\n",
    "A core goal of brainrender is to facilitate the production of high-quality images, videos, and interactive visualizations of anatomical data. Brainrender leverages the functionality provided by vedo [@bib20] to create images directly from the rendered scene. Renderings can also be exported to HTML files to create interactive visualizations that can be hosted online. Finally, functionality is provided to easily export videos from rendered scenes. Animated videos can be created by specifying parameters (e.g. the position of the camera or the transparency of a mesh) at selected keyframes. Brainrender then creates a video by animating the rendering between the keyframes. This approach facilitates the creation of videos while retaining the flexibility necessary to produce richly animated sequences ([Videos 2](#video2)–[5](#video5)). All example figures and videos in this article were generated directly in brainrender, with no further editing.\n",
    "\n",
    "\n",
    "\n",
    "# Discussion\n",
    "\n",
    "In this article, we have presented brainrender, a python software for creating 3D renderings of anatomically registered data.\n",
    "\n",
    "Brainrender addresses the current lack of python-based and user-friendly tools for redeanatomical data. Being part with BrainGlobe’s suite of software tools for the analysis of anatomical data brainrender facilitates the development of integrated analysis pipelines and the re-usability of software tools across model species, minimizing the need for additional software development. Finally, brainrender promises to improve how anatomically registered data are disseminated both in scientific publications and in other media (e.g., hosted online).\n",
    "\n",
    "## Limitations and future directions\n",
    "\n",
    "With brainrender, we aimed to make the rendering process as simple as possible. Nevertheless, some more technically demanding pre-processing steps of raw image data are necessary before they can be visualized in brainrender. In particular, a critical step for visualizing anatomical data is the registration to a reference template (e.g., one of the atlases provided by the AtlasAPI). While this step can be challenging and time-consuming, the brainglobe suite provides software to facilitate this process (e.g., brainreg and bg-space), and alternative software tools have been developed before for this purpose (e.g., [@bib27]; [@bib13]). Additional information about data registration can be found in brainglobe’s and brainrender’s online documentation, as well as in the examples in brainrender’s GitHub repository. A related challenge is integrating new anatomical atlases into the AtlasAPI. While we anticipate that most users will not have this need, it is a non-trivial task that requires considerable programming skills. We believe that brainglobe’s AtlasAPI greatly facilitates this process, which is presented in [@bib7] and has extensive online documentation.\n",
    "\n",
    "Brainrender has been optimized for rendering quality instead of rendering performance. Other commonly used software tools like napari [@bib26] and ImageJ are dedicated to visualizing N-dimensional image data and perform very well even on large datasets. When comparing brainrender with other software, it is important to note brainrender is intended to work primarily with mesh data and not 3D image data. Although it can display image data (e.g., with the Volume actor), this functionality is not as fully developed as that using mesh data. A direct benchmarking comparison between brainrender and napari shows that brainrender is 5× slower than napari at visualizing image data, but 20× faster at visualizing mesh data. In both cases, however, brainrender achieves superior rendering quality. Other software packages dedicated to high-performance rendering, such as Blender, can handle mesh data with a performance that surpasses brainrender. Their use, however, comes with the large overhead of learning a very complex software to generate what most often will be simple renderings. It also requires that the users themselves take care of downloading, storing, and accessing mesh data from the anatomical atlases. Nevertheless, the rendering performance of brainrender could be a target for improvement in future versions, both for images and for mesh data, through optimizing the Actor classes. While we have designed brainrender usage to require minimal programming expertise, installing python and brainrender may still prove challenging for some users. In the future, we aim to make brainrender a stand-alone application that can be simply downloaded and locally installed, either through Docker containers or through executable files. Further possible improvements include the development of plug-ins for loading of data from file formats other than those already supported, and improvements to the GUI functionality. Moreover, in addition to images and videos, brainrender can be used to export renderings as HTML files and generate online 3D interactive renderings. Currently, however, embedding renderings into a web page remains far from a trivial task. Further developments on this front should make it possible to easily host interactive renderings online, therefore improving how anatomically registered data are disseminated both in scientific publications and in other media. While we plan to continue developing brainrender in the future, we welcome contributions from the community. Users should feel encouraged to contribute irrespective of their programming experience, and we note that the programming ability of many biologists is often better than what they perceive it to be. We especially welcome contributions aimed at improving the user-experience of brainrender, at any level of interaction. Contributions can involve active development of brainrender’s code base, but they can also be bug reports, features request, improvements with the online documentation, and help answering users’ questions.\n",
    "\n",
    "# Materials and methods\n",
    "\n",
    "table: Key resources table\n",
    ":::\n",
    "| Reagent type (species) or resource | Designation          | Source or reference                                                              | Identifiers                                                       | Additional information |\n",
    "| ---------------------------------- | -------------------- | -------------------------------------------------------------------------------- | ----------------------------------------------------------------- | ---------------------- |\n",
    "| Software, algorithm                | Numpy                | <https://doi.org/10.1038/s41586-020-2649-2>                                      | RRID:[SCR_008633](https://scicrunch.org/resolver/RRID:SCR_008633) |                        |\n",
    "| Software, algorithm                | Vtk                  | <https://doi.org/10.1016/j.softx.2015.04.001>                                    | RRID:[SCR_015013](https://scicrunch.org/resolver/RRID:SCR_015013) |                        |\n",
    "| Software, algorithm                | Vedo                 | <https://zenodo.org/record/4287635>                                              |                                                                   |                        |\n",
    "| Software, algorithm                | BrainGlobe Atlas API | <https://doi.org/10.21105/joss.02668>                                            |                                                                   |                        |\n",
    "| Software, algorithm                | Pandas               | <https://doi.org/10.5281/zenodo.3509134>                                         |                                                                   |                        |\n",
    "| Software, algorithm                | Matplotlib           | doi: [10.1109/MCSE.2007.55](https://doi.org/10.1109/MCSE.2007.55)                | RRID:[SCR_008624](https://scicrunch.org/resolver/RRID:SCR_008624) |                        |\n",
    "| Software, algorithm                | Jupyter              | doi:[10.3233/978-1-61499-649-1-87](https://doi.org/10.3233/978-1-61499-649-1-87) | RRID:[SCR_018416](https://scicrunch.org/resolver/RRID:SCR_018416) |                        |\n",
    ":::\n",
    "{#keyresource}\n",
    "\n",
    "## Brainrender’s workflow\n",
    "\n",
    "Brainrender is written in Python three and depends on standard python packages such as numpy, matplotlib, and pandas [@bib11; @bib12; @bib29] and on vedo [@bib20] and BrainGlobe’s AtlasAPI [@bib7]. Extensive documentation on how to install and use brainrender can be found at docs.brainrender.info, and we provide here a only brief overview of the workflow in brainrender. The GitHub repository also contains detailed examples of Python scripts and Jupyter notebooks [@bib14]. All brainrender’s code is open-source and has been deposited in full in the GitHub repository and at PyPI (a repository of Python software) under a permissive BSD 3-Clause license. We welcome any user to download and inspect the source code, modify it as needed, or contribute to brainrender’s development directly.\n",
    "\n",
    "Brainrener can be installed in any python environment using python version ≥ 3.60.0. We recommend the creation of an anaconda or virtual environment with an appropriate python version for use with brainrender. Installing brainrender is then as simple as ‘pip install brainrender’ although additional optional packages might have to be installed separately (e.g., to access data from the Allen Institute).\n",
    "\n",
    "The central element of any visualization produced by brainrender is the Scene. A Scene controls which elements (Actors) are visualized and coordinates the rendering, the position of the camera’s point of view, the generation of screenshots and animations from the rendered scene, and other important actions.\n",
    "\n",
    "Actors can be added to the scene in several ways. When loading data directly from a file with 3D mesh information (e.g. .obj), an Actor is generated automatically to represent the mesh in the rendering. When rendering data from other sources (e.g. from a .swc file with neuronal morphology or from a table of coordinates of labeled cells), dedicated functions in brainrender parse the input data and generate the corresponding Actors. Actors in brainrender have properties, such as color and transparency, that can be used to specify the appearance of a rendered actor accordingly to the user’s aesthetic preferences. Brainrender’s Scene and Actor functionality use vedo as the rendering engine (GitHub repository; [@bib20]).\n",
    "\n",
    "In addition to data loaded from external files, brainrender can directly load atlas data containing, for example, the 3D meshes of individual brain regions. This is done via BrainGlobe’s AtlasAPI to allow the same programming interface in brainrender to visualize data from any atlas supported by the AtlasAPI. Brainrender also provides additional functionality to interface with data available from projects that are part of the Allen Institute Mouse Atlas and Mouse Connectome projects [@bib32; @bib21]. These projects provide an SDK (Software Development Kit) to directly download data from their database, and brainrender provides a simple interface for downloading gene expression and connectomics (streamlines) data. All atlas and connectomics data downloaded by brainrender can be loaded directly into a Scene as Actors.\n",
    "\n",
    "Visualizing morphological data with reconstructions of individual neurons can be done by loading these type of data directly from .swc files or by downloading them in Python using morphapi – software from the BrainGlobe suite that provides a simple and unified interface with several databases of neuron morphologies (e.g., [neuromorpho.org](http://neuromorpho.org/), [@bib4]). Data downloaded with morphapi can be loaded directly into a brainrender scene for visualization.\n",
    "\n",
    "## Example code\n",
    "\n",
    "As a demonstration of how easily renderings can be created in brainrender, the Python code ([Figure 5](#fig5)) illustrates how to create a Scene and add Actors by loading 3D data from an .obj file and then adding brain regions to the visualization. Brainrender’s GitHub repository provides several simple and concise examples about how to use brainrender to load user data, atlas data, to edit rendered meshes (e.g., to change color or cut them with a plane), to save screenshots from rendered scenes, and to create animated videos.\n",
    "\n",
    "figure: Figure 5.\n",
    ":::\n",
    "![](article.ipynb.media/fig5.jpg)\n",
    "\n",
    "### Code examples.\n",
    "\n",
    "(**A**) Example code to visualize a set of labeled cells coordinates using the Points actor class. (**B**) Code example illustrating how to override brainrender’s default settings and how to use custom camera settings. (**C**) Code example showing how custom mesh objects saved as .obj and .stl files can be visualized in brainrender. (**D**) Example usage of brainrender’s Animation class to create custom animations. Further examples can be found in brainrender’s GitHub repository.\n",
    ":::\n",
    "{#fig5}\n",
    "\n",
    "While brainrender is intended to be mainly a visualization tool, simple analyses can be carried out directly by leveraging functionality from either vedo or BrainGlobe’s AtlasAPI. For example, Vedo can access properties of actors added to a brainrender scene, which could be used to measure the distance between two actors or to check if two actors’ meshes intersect ([Figure 6A](#fig6)). Similarly, BrainGlobe’s AtlasAPI provides methods to, for example, check whether a point (defined by a set of coordinates) is contained in a brain region of interest or to retrieve brain regions that are above or below a brain region of interest in the atlas’ hierarchy ([Figure 6B](#fig6)).\n",
    "\n",
    "figure: Figure 6.\n",
    ":::\n",
    "![](article.ipynb.media/fig6.jpg)\n",
    "\n",
    "### Advanced code examples.\n",
    "\n",
    "(**A**) Example code to measure the distance between actors and if a given actor is contained in a target brain region. Left: virus injection volumes (red and gray) reconstructed from virus injections targeted at the superior colliculus (magenta). Gray colored injection volumes show data from the Allen Mouse Connectome [@bib21]. Right: example code to measure the distance between the center of two brainrender actors and to check if an actor’s center is contained in a brain region of interest. (**B**) Code example illustrating how check if a point (e.g., representing a labeled cell) is in a brain region of interest. Left: visualization of reconstructed probe positions from several individual animals, data from [@bib28]. Probe channels located in the thalamus (red) are highlighted. Right: example code showing how to use BrainGlobe’s AtlasAPI to verify whether a point (here representing a probe channel) is contained in a brain region of interest or any of its substructures. Further examples can be found in brainrender’s GitHub repository.\n",
    ":::\n",
    "{#fig6}\n",
    "\n",
    "The code and data used to generate the figures and videos in this article are made freely available at brainrender’s GitHub repository and provides examples of more advanced usage of brainrender’s functionality.\n",
    "\n",
    "## Benchmark tests\n",
    "\n",
    "We designed a series of benchmark tests aimed at evaluating brainrender’s performance with different combinations of hardware and operating system. We used five tests designed to cover most aspects of brainrender’s functionality:\n",
    "\n",
    "-   rendering large numbers (1^4^, 1^6^, 1^7^) of cells using the Points actor.\n",
    "-   using a plane to ‘slice’ the same number of cells (using the Scene.slice method).\n",
    "-   rendering more than 1000 individual meshes representing brain regions from the Allen institute’s mouse brain.\n",
    "-   making a short (3 s, 10 fps) animation of a spinning brain with several brain regions’ meshes displayed.\n",
    "-   rendering (10 times) a 3D image representing the voxel-wise expression levels of gene Gpr161 in the mouse brain (data from the Allen Institute).\n",
    "\n",
    "For each test, we estimated the time necessary to complete the test script as well as the frame rate of the interactive rendering. Four machines were used for benchmark tests (see [Table 1](#table1)). The results of the benchmark tests (see Key resource table) illustrate that although a GPU improves performance, in the absence of a dedicated GPU brainrender can handle rich interactive visualizations (for most user cases, the number of rendered mesh vertices is much lower than that used in the tests)."
   ]
  }
 ],
 "metadata": {
  "about": [
   {
    "name": "Neuroscience",
    "type": "DefinedTerm"
   }
  ],
  "authors": [
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     }
    ],
    "emails": [
     "federico.claudi.17@ucl.ac.uk"
    ],
    "familyNames": [
     "Claudi"
    ],
    "givenNames": [
     "Federico"
    ],
    "name": "Federico Claudi",
    "type": "Person"
   },
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Institute of Neuroscience, Technical University of Munich",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Martinsried",
       "type": "PostalAddress"
      },
      "name": "Max Planck Institute of Neurobiology, Research Group of Sensorimotor Control",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Munich Cluster for Systems Neurology (SyNergy)",
      "type": "Organization"
     }
    ],
    "familyNames": [
     "Tyson"
    ],
    "givenNames": [
     "Adam",
     "L"
    ],
    "name": "Adam L Tyson",
    "type": "Person"
   },
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Institute of Neuroscience, Technical University of Munich",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Martinsried",
       "type": "PostalAddress"
      },
      "name": "Max Planck Institute of Neurobiology, Research Group of Sensorimotor Control",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Munich Cluster for Systems Neurology (SyNergy)",
      "type": "Organization"
     }
    ],
    "familyNames": [
     "Petrucco"
    ],
    "givenNames": [
     "Luigi"
    ],
    "name": "Luigi Petrucco",
    "type": "Person"
   },
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Institute of Neuroscience, Technical University of Munich",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Martinsried",
       "type": "PostalAddress"
      },
      "name": "Max Planck Institute of Neurobiology, Research Group of Sensorimotor Control",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Munich Cluster for Systems Neurology (SyNergy)",
      "type": "Organization"
     }
    ],
    "familyNames": [
     "Margrie"
    ],
    "givenNames": [
     "Troy",
     "W"
    ],
    "name": "Troy W Margrie",
    "type": "Person"
   },
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Institute of Neuroscience, Technical University of Munich",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Martinsried",
       "type": "PostalAddress"
      },
      "name": "Max Planck Institute of Neurobiology, Research Group of Sensorimotor Control",
      "type": "Organization"
     },
     {
      "address": {
       "addressCountry": "Germany",
       "addressLocality": "Munich",
       "type": "PostalAddress"
      },
      "name": "Munich Cluster for Systems Neurology (SyNergy)",
      "type": "Organization"
     }
    ],
    "familyNames": [
     "Portugues"
    ],
    "givenNames": [
     "Ruben"
    ],
    "name": "Ruben Portugues",
    "type": "Person"
   },
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "United Kingdom",
       "addressLocality": "London",
       "type": "PostalAddress"
      },
      "name": "UCL Sainsbury Wellcome Centre",
      "type": "Organization"
     }
    ],
    "emails": [
     "t.branco@ucl.ac.uk"
    ],
    "familyNames": [
     "Branco"
    ],
    "givenNames": [
     "Tiago"
    ],
    "name": "Tiago Branco",
    "type": "Person"
   }
  ],
  "dateAccepted": {
   "type": "Date",
   "value": "2021-03-17"
  },
  "datePublished": {
   "type": "Date",
   "value": "2021-03-19"
  },
  "dateReceived": {
   "type": "Date",
   "value": "2020-12-15"
  },
  "description": "Three-dimensional (3D) digital brain atlases and high-throughput brain-wide imaging techniques generate large multidimensional datasets that can be registered to a common reference frame. Generating insights from such datasets depends critically on visualization and interactive data exploration, but this a challenging task. Currently available software is dedicated to single atlases, model species or data types, and generating 3D renderings that merge anatomically registered data from diverse sources requires extensive development and programming skills. Here, we present brainrender: an open-source Python package for interactive visualization of multidimensional datasets registered to brain atlases. Brainrender facilitates the creation of complex renderings with different data types in the same visualization and enables seamless use of different atlas sources. High-quality visualizations can be used interactively and exported as high-resolution figures and animated videos. By facilitating the visualization of anatomically registered data, brainrender should accelerate the analysis, interpretation, and dissemination of brain-wide multidimensional data.",
  "editors": [
   {
    "affiliations": [
     {
      "address": {
       "addressCountry": "Switzerland",
       "type": "PostalAddress"
      },
      "name": "EPFL",
      "type": "Organization"
     }
    ],
    "familyNames": [
     "Mathis"
    ],
    "givenNames": [
     "Mackenzie",
     "W"
    ],
    "type": "Person"
   }
  ],
  "fundedBy": [
   {
    "funders": [
     {
      "name": "Gatsby Charitable Foundation",
      "type": "Organization"
     }
    ],
    "identifiers": [
     {
      "type": "PropertyValue",
      "value": "GAT3361"
     }
    ],
    "type": "MonetaryGrant"
   },
   {
    "funders": [
     {
      "name": "Wellcome",
      "type": "Organization"
     }
    ],
    "identifiers": [
     {
      "type": "PropertyValue",
      "value": "214333/Z/18/Z"
     }
    ],
    "type": "MonetaryGrant"
   },
   {
    "funders": [
     {
      "name": "Wellcome",
      "type": "Organization"
     }
    ],
    "identifiers": [
     {
      "type": "PropertyValue",
      "value": "214352/Z/18/Z"
     }
    ],
    "type": "MonetaryGrant"
   },
   {
    "funders": [
     {
      "name": "Wellcome",
      "type": "Organization"
     }
    ],
    "identifiers": [
     {
      "type": "PropertyValue",
      "value": "090843/F/09/Z"
     }
    ],
    "type": "MonetaryGrant"
   },
   {
    "funders": [
     {
      "name": "Deutsche Forschungsgemeinschaft",
      "type": "Organization"
     }
    ],
    "identifiers": [
     {
      "type": "PropertyValue",
      "value": 390857198
     }
    ],
    "type": "MonetaryGrant"
   }
  ],
  "genre": [
   "Tools and Resources"
  ],
  "identifiers": [
   {
    "name": "publisher-id",
    "propertyID": "https://registry.identifiers.org/registry/publisher-id",
    "type": "PropertyValue",
    "value": 65751
   },
   {
    "name": "doi",
    "propertyID": "https://registry.identifiers.org/registry/doi",
    "type": "PropertyValue",
    "value": "10.7554/eLife.65751"
   },
   {
    "name": "elocation-id",
    "propertyID": "https://registry.identifiers.org/registry/elocation-id",
    "type": "PropertyValue",
    "value": "e65751"
   }
  ],
  "isPartOf": {
   "isPartOf": {
    "identifiers": [
     {
      "name": "nlm-ta",
      "propertyID": "https://registry.identifiers.org/registry/nlm-ta",
      "type": "PropertyValue",
      "value": "elife"
     },
     {
      "name": "publisher-id",
      "propertyID": "https://registry.identifiers.org/registry/publisher-id",
      "type": "PropertyValue",
      "value": "eLife"
     }
    ],
    "issns": [
     "2050-084X"
    ],
    "publisher": {
     "name": "eLife Sciences Publications, Ltd",
     "type": "Organization"
    },
    "title": "eLife",
    "type": "Periodical"
   },
   "type": "PublicationVolume",
   "volumeNumber": 10
  },
  "kernelspec": {
   "name": "python37564bitbrainrenderconda8243b41865284f31be1008cc1f39ef67",
   "display_name": "Python 3.7.5 64-bit ('brainrender': conda)"
  },
  "keywords": [
   "software",
   "data visualization",
   "open source",
   "anatomy",
   "None"
  ],
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.5-final"
  },
  "licenses": [
   {
    "content": [
     {
      "content": [
       "This article is distributed under the terms of the ",
       {
        "content": [
         "Creative Commons Attribution License"
        ],
        "target": "http://creativecommons.org/licenses/by/4.0/",
        "type": "Link"
       },
       ", which permits unrestricted use and redistribution provided that the original author and source are credited."
      ],
      "type": "Paragraph"
     }
    ],
    "type": "CreativeWork",
    "url": "http://creativecommons.org/licenses/by/4.0/"
   }
  ],
  "references": [
   {
    "authors": [
     {
      "familyNames": [
       "Adkins"
      ],
      "givenNames": [
       "RS"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Aldridge"
      ],
      "givenNames": [
       "AI"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Allen"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ament"
      ],
      "givenNames": [
       "SA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "An"
      ],
      "givenNames": [
       "X"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Armand"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "name": "BRAIN Initiative Cell Census Network (BICCN)",
      "type": "Organization"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib1",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/2020.10.19.343129"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "A multimodal cell census and atlas of the mammalian primary motor cortex",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Arganda-Carreras"
      ],
      "givenNames": [
       "I"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Manoliu"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mazuras"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Schulze"
      ],
      "givenNames": [
       "F"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Iglesias"
      ],
      "givenNames": [
       "JE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bühler"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jenett"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rouyer"
      ],
      "givenNames": [
       "F"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Andrey"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2018"
    },
    "id": "bib2",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.3389/fninf.2018.00013"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 29628885
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Frontiers in Neuroinformatics",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 12
    },
    "title": "A statistically representative Atlas for mapping neuronal circuits in the Drosophila Adult Brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Arshadi"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Eddison"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gunther"
      ],
      "givenNames": [
       "UA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harrington"
      ],
      "givenNames": [
       "KI"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib3",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/2020.07.13.179325"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "SNT: a unifying toolbox for quantification of neuronal anatomy",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Ascoli"
      ],
      "givenNames": [
       "GA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Donohue"
      ],
      "givenNames": [
       "DE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Halavi"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2007"
    },
    "id": "bib4",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1523/JNEUROSCI.2055-07.2007"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 17728438
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Journal of Neuroscience",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 27
    },
    "pageEnd": 9251,
    "pageStart": 9247,
    "title": "NeuroMorpho.Org: a central resource for neuronal morphologies",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Bates"
      ],
      "givenNames": [
       "AS"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Manton"
      ],
      "givenNames": [
       "JD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jagannathan"
      ],
      "givenNames": [
       "SR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Costa"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Schlegel"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rohlfing"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jefferis"
      ],
      "givenNames": [
       "GS"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib5",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.7554/eLife.53350"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 32286229
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "eLife",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 9
    },
    "title": "The Natverse, a versatile toolbox for combining and analysing neuroanatomical data",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Chon"
      ],
      "givenNames": [
       "U"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Vanselow"
      ],
      "givenNames": [
       "DJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Cheng"
      ],
      "givenNames": [
       "KC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kim"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib6",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41467-019-13057-w"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 31699990
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature Communications",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 10
    },
    "title": "Enhanced and unified anatomical labeling for a common mouse brain atlas",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Claudi"
      ],
      "givenNames": [
       "F"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Petrucco"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tyson"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Branco"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Margrie"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Portugues"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib7",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.21105/joss.02668"
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Journal of Open Source Software",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 5
    },
    "title": "BrainGlobe atlas API: a common interface for neuroanatomical atlases",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Ding"
      ],
      "givenNames": [
       "S‐L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Royall"
      ],
      "givenNames": [
       "JJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sunkin"
      ],
      "givenNames": [
       "SM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ng"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Facer"
      ],
      "givenNames": [
       "BAC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lesnar"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Guillozet‐Bongaarts"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "McMurray"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Szafer"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dolbeare"
      ],
      "givenNames": [
       "TA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Stevens"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tirrell"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Benner"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Caldejon"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dalley"
      ],
      "givenNames": [
       "RA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dee"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lau"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Nyhus"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Reding"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Riley"
      ],
      "givenNames": [
       "ZL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sandman"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Shen"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kouwe"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Varjabedian"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Write"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zollei"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dang"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Knowles"
      ],
      "givenNames": [
       "JA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Koch"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Phillips"
      ],
      "givenNames": [
       "JW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sestan"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wohnoutka"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zielke"
      ],
      "givenNames": [
       "HR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hohmann"
      ],
      "givenNames": [
       "JG"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jones"
      ],
      "givenNames": [
       "AR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bernard"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hawrylycz"
      ],
      "givenNames": [
       "MJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hof"
      ],
      "givenNames": [
       "PR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fischl"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lein"
      ],
      "givenNames": [
       "ES"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2016"
    },
    "id": "bib8",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1002/cne.24080"
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Journal of Comparative Neurology",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 524
    },
    "pageEnd": 3481,
    "pageStart": 3127,
    "title": "Comprehensive cellular‐resolution atlas of the adult human brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Fürth"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Vaissière"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tzortzi"
      ],
      "givenNames": [
       "O"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Xuan"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Märtin"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lazaridis"
      ],
      "givenNames": [
       "I"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Spigolon"
      ],
      "givenNames": [
       "G"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fisone"
      ],
      "givenNames": [
       "G"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tomer"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Deisseroth"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Carlén"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Miller"
      ],
      "givenNames": [
       "CA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rumbaugh"
      ],
      "givenNames": [
       "G"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Meletis"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2018"
    },
    "id": "bib9",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41593-017-0027-7"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 29203898
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature Neuroscience",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 21
    },
    "pageEnd": 149,
    "pageStart": 139,
    "title": "An interactive framework for whole-brain maps at cellular resolution",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Goubran"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Leuze"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hsueh"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Aswendt"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ye"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tian"
      ],
      "givenNames": [
       "Q"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Cheng"
      ],
      "givenNames": [
       "MY"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Crow"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Steinberg"
      ],
      "givenNames": [
       "GK"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "McNab"
      ],
      "givenNames": [
       "JA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Deisseroth"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zeineh"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib10",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41467-019-13374-0"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 31796741
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature Communications",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 10
    },
    "title": "Multimodal image registration and connectivity analysis for integration of connectomic data from microscopy to MRI",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "CR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Millman"
      ],
      "givenNames": [
       "KJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "van",
       "der",
       "Walt"
      ],
      "givenNames": [
       "SJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gommers"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Virtanen"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Cournapeau"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wieser"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Taylor"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Berg"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Smith"
      ],
      "givenNames": [
       "NJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kern"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Picus"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hoyer"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "van",
       "Kerkwijk"
      ],
      "givenNames": [
       "MH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Brett"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Haldane"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Del",
       "Río"
      ],
      "givenNames": [
       "JF"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wiebe"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Peterson"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gérard-Marchant"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sheppard"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Reddy"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Weckesser"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Abbasi"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gohlke"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Oliphant"
      ],
      "givenNames": [
       "TE"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib11",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41586-020-2649-2"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 32939066
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 585
    },
    "pageEnd": 362,
    "pageStart": 357,
    "title": "Array programming with NumPy",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Hunter"
      ],
      "givenNames": [
       "JD"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2007"
    },
    "id": "bib12",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1109/MCSE.2007.55"
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Computing in Science & Engineering",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 9
    },
    "pageEnd": 95,
    "pageStart": 90,
    "title": "Matplotlib: a 2D graphics environment",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Jin"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Nguyen"
      ],
      "givenNames": [
       "JD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Weber"
      ],
      "givenNames": [
       "SJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mejias-Aponte"
      ],
      "givenNames": [
       "CA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Madangopal"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib13",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/727529"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "SMART: an open source extension of whole brain for iDISCO+ LSFM intact mouse brain registration and segmentation",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Kluyver"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ragan-Kelley"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Pérez"
      ],
      "givenNames": [
       "F"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Granger"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bussonnier"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Frederic"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kelley"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Loizides"
      ],
      "givenNames": [
       "F.",
       "ernando"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Scmidt"
      ],
      "givenNames": [
       "B.",
       "irgit"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2016"
    },
    "id": "bib14",
    "isPartOf": {
     "name": "Positioning and Power in Academic Publishing: Players, Agents and Agendas",
     "type": "CreativeWork"
    },
    "pageEnd": 90,
    "pageStart": 87,
    "publisher": {
     "address": {
      "addressLocality": "Netherlands",
      "type": "PostalAddress"
     },
     "name": "IOS Press",
     "type": "Organization"
    },
    "title": "Jupyter Notebooks - a Publishing Format for Reproducible Computational Workflows",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Kunst"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Laurell"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mokayes"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kramer"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kubo"
      ],
      "givenNames": [
       "F"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fernandes"
      ],
      "givenNames": [
       "AM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Förster"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dal",
       "Maschio"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Baier"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib15",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.neuron.2019.04.034"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 31147152
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Neuron",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 103
    },
    "pageEnd": 38,
    "pageStart": 21,
    "title": "A Cellular-Resolution atlas of the larval zebrafish brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Lein"
      ],
      "givenNames": [
       "ES"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hawrylycz"
      ],
      "givenNames": [
       "MJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ao"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ayres"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bensinger"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bernard"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Boe"
      ],
      "givenNames": [
       "AF"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Boguski"
      ],
      "givenNames": [
       "MS"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Brockway"
      ],
      "givenNames": [
       "KS"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Byrnes"
      ],
      "givenNames": [
       "EJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chen"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chen"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chen"
      ],
      "givenNames": [
       "TM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chin"
      ],
      "givenNames": [
       "MC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chong"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Crook"
      ],
      "givenNames": [
       "BE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Czaplinska"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dang"
      ],
      "givenNames": [
       "CN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Datta"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dee"
      ],
      "givenNames": [
       "NR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Desaki"
      ],
      "givenNames": [
       "AL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Desta"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Diep"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dolbeare"
      ],
      "givenNames": [
       "TA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Donelan"
      ],
      "givenNames": [
       "MJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dong"
      ],
      "givenNames": [
       "HW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dougherty"
      ],
      "givenNames": [
       "JG"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Duncan"
      ],
      "givenNames": [
       "BJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ebbert"
      ],
      "givenNames": [
       "AJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Eichele"
      ],
      "givenNames": [
       "G"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Estin"
      ],
      "givenNames": [
       "LK"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Faber"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Facer"
      ],
      "givenNames": [
       "BA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fields"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fischer"
      ],
      "givenNames": [
       "SR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Fliss"
      ],
      "givenNames": [
       "TP"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Frensley"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gates"
      ],
      "givenNames": [
       "SN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Glattfelder"
      ],
      "givenNames": [
       "KJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Halverson"
      ],
      "givenNames": [
       "KR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hart"
      ],
      "givenNames": [
       "MR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hohmann"
      ],
      "givenNames": [
       "JG"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Howell"
      ],
      "givenNames": [
       "MP"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jeung"
      ],
      "givenNames": [
       "DP"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Johnson"
      ],
      "givenNames": [
       "RA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Karr"
      ],
      "givenNames": [
       "PT"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kawal"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kidney"
      ],
      "givenNames": [
       "JM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Knapik"
      ],
      "givenNames": [
       "RH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kuan"
      ],
      "givenNames": [
       "CL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lake"
      ],
      "givenNames": [
       "JH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Laramee"
      ],
      "givenNames": [
       "AR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Larsen"
      ],
      "givenNames": [
       "KD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lau"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lemon"
      ],
      "givenNames": [
       "TA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Liang"
      ],
      "givenNames": [
       "AJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Liu"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Luong"
      ],
      "givenNames": [
       "LT"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Michaels"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Morgan"
      ],
      "givenNames": [
       "JJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Morgan"
      ],
      "givenNames": [
       "RJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mortrud"
      ],
      "givenNames": [
       "MT"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mosqueda"
      ],
      "givenNames": [
       "NF"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ng"
      ],
      "givenNames": [
       "LL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ng"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Orta"
      ],
      "givenNames": [
       "GJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Overly"
      ],
      "givenNames": [
       "CC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Pak"
      ],
      "givenNames": [
       "TH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Parry"
      ],
      "givenNames": [
       "SE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Pathak"
      ],
      "givenNames": [
       "SD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Pearson"
      ],
      "givenNames": [
       "OC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Puchalski"
      ],
      "givenNames": [
       "RB"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Riley"
      ],
      "givenNames": [
       "ZL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rockett"
      ],
      "givenNames": [
       "HR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rowland"
      ],
      "givenNames": [
       "SA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Royall"
      ],
      "givenNames": [
       "JJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ruiz"
      ],
      "givenNames": [
       "MJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sarno"
      ],
      "givenNames": [
       "NR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Schaffnit"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Shapovalova"
      ],
      "givenNames": [
       "NV"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sivisay"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Slaughterbeck"
      ],
      "givenNames": [
       "CR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Smith"
      ],
      "givenNames": [
       "SC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Smith"
      ],
      "givenNames": [
       "KA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Smith"
      ],
      "givenNames": [
       "BI"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sodt"
      ],
      "givenNames": [
       "AJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Stewart"
      ],
      "givenNames": [
       "NN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Stumpf"
      ],
      "givenNames": [
       "KR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sunkin"
      ],
      "givenNames": [
       "SM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sutram"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tam"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Teemer"
      ],
      "givenNames": [
       "CD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Thaller"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Thompson"
      ],
      "givenNames": [
       "CL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Varnam"
      ],
      "givenNames": [
       "LR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Visel"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Whitlock"
      ],
      "givenNames": [
       "RM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wohnoutka"
      ],
      "givenNames": [
       "PE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wolkey"
      ],
      "givenNames": [
       "CK"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wong"
      ],
      "givenNames": [
       "VY"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wood"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Yaylaoglu"
      ],
      "givenNames": [
       "MB"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Young"
      ],
      "givenNames": [
       "RC"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Youngstrom"
      ],
      "givenNames": [
       "BL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Yuan"
      ],
      "givenNames": [
       "XF"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zhang"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zwingman"
      ],
      "givenNames": [
       "TA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jones"
      ],
      "givenNames": [
       "AR"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2007"
    },
    "id": "bib16",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/nature05453"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 17151600
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 445
    },
    "pageEnd": 176,
    "pageStart": 168,
    "title": "Genome-wide atlas of gene expression in the adult mouse brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Markov"
      ],
      "givenNames": [
       "DA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kist"
      ],
      "givenNames": [
       "AM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Petrucco"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Portugues"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib17",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/2020.02.12.945956"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "The cerebellum recalibrates a feedback controller involved in motor control",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Mathis"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mamidanna"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Cury"
      ],
      "givenNames": [
       "KM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Abe"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Murthy"
      ],
      "givenNames": [
       "VN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mathis"
      ],
      "givenNames": [
       "MW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bethge"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2018"
    },
    "id": "bib18",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41593-018-0209-y"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 30127430
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature Neuroscience",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 21
    },
    "pageEnd": 1289,
    "pageStart": 1281,
    "title": "DeepLabCut: markerless pose estimation of user-defined body parts with deep learning",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Muller"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bednar"
      ],
      "givenNames": [
       "JA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Diesmann"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gewaltig"
      ],
      "givenNames": [
       "MO"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hines"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Davison"
      ],
      "givenNames": [
       "AP"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2015"
    },
    "id": "bib19",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.3389/fninf.2015.00011"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 25926788
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Frontiers in Neuroinformatics",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 9
    },
    "title": "Python in neuroscience",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Musy"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dalmasso"
      ],
      "givenNames": [
       "G"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sullivan"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib20",
    "publisher": {
     "name": "Visualization Toolkit",
     "type": "Organization"
    },
    "title": "Vedo, a Python Module for Scientific Visualization and Analysis of 3D Objects and Point Clouds Based on Vtk",
    "type": "Article",
    "url": "https://pypi.org/project/vedo/"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Oh"
      ],
      "givenNames": [
       "SW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "JA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ng"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Winslow"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Cain"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mihalas"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wang"
      ],
      "givenNames": [
       "Q"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lau"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kuan"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Henry"
      ],
      "givenNames": [
       "AM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Mortrud"
      ],
      "givenNames": [
       "MT"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ouellette"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Nguyen"
      ],
      "givenNames": [
       "TN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sorensen"
      ],
      "givenNames": [
       "SA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Slaughterbeck"
      ],
      "givenNames": [
       "CR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wakeman"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Li"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Feng"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ho"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Nicholas"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hirokawa"
      ],
      "givenNames": [
       "KE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bohn"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Joines"
      ],
      "givenNames": [
       "KM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Peng"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hawrylycz"
      ],
      "givenNames": [
       "MJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Phillips"
      ],
      "givenNames": [
       "JW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hohmann"
      ],
      "givenNames": [
       "JG"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wohnoutka"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gerfen"
      ],
      "givenNames": [
       "CR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Koch"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bernard"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dang"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jones"
      ],
      "givenNames": [
       "AR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zeng"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2014"
    },
    "id": "bib21",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/nature13186"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 24695228
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 508
    },
    "pageEnd": 214,
    "pageStart": 207,
    "title": "A mesoscale connectome of the mouse brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Pachitariu"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Stringer"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dipoppa"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Schröder"
      ],
      "givenNames": [
       "S"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rossi"
      ],
      "givenNames": [
       "LF"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dalgleish"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Carandini"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "KD"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2017"
    },
    "id": "bib22",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/061507"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "Suite2p: beyond 10,000 neurons with standard Two-Photon microscopy",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Renier"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Adams"
      ],
      "givenNames": [
       "EL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kirst"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wu"
      ],
      "givenNames": [
       "Z"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Azevedo"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kohl"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Autry"
      ],
      "givenNames": [
       "AE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kadiri"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Umadevi",
       "Venkataraju"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zhou"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wang"
      ],
      "givenNames": [
       "VX"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tang"
      ],
      "givenNames": [
       "CY"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Olsen"
      ],
      "givenNames": [
       "O"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dulac"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Osten"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Tessier-Lavigne"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2016"
    },
    "id": "bib23",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.cell.2016.05.007"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 27238021
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Cell",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 165
    },
    "pageEnd": 1802,
    "pageStart": 1789,
    "title": "Mapping of brain activity by automated volume analysis of immediate early genes",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Shamash"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Carandini"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Steinmetz"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2018"
    },
    "id": "bib24",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/447995"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "A tool for analyzing electrode tracks from slice histology",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Simmons"
      ],
      "givenNames": [
       "DM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Swanson"
      ],
      "givenNames": [
       "LW"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2009"
    },
    "id": "bib25",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.brainresrev.2009.02.002"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 19248810
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Brain Research Reviews",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 60
    },
    "pageEnd": 367,
    "pageStart": 349,
    "title": "Comparing histological data from different brains: sources of error and strategies for minimizing them",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Sofroniew"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lambert"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib26",
    "title": "Napari/Napari",
    "type": "Article",
    "url": "https://doi.org/10.5281/zenodo.4046812"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Song"
      ],
      "givenNames": [
       "JH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Choi"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Song"
      ],
      "givenNames": [
       "YH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kim"
      ],
      "givenNames": [
       "JH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Jeong"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lee"
      ],
      "givenNames": [
       "SH"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Paik"
      ],
      "givenNames": [
       "SB"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib27",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.celrep.2020.107682"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 32460016
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Cell Reports",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 31
    },
    "title": "Precise mapping of single neurons by calibrated 3D reconstruction of brain slices reveals topographic projection in mouse visual cortex",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Steinmetz"
      ],
      "givenNames": [
       "NA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zatka-Haas"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Carandini"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "KD"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib28",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1038/s41586-019-1787-x"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 31776518
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Nature",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 576
    },
    "pageEnd": 273,
    "pageStart": 266,
    "title": "Distributed coding of choice, action and engagement across the mouse brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "name": "The pandas development team",
      "type": "Organization"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib29",
    "title": "Pandas-Dev/Pandas: Pandas",
    "type": "Article",
    "url": "https://doi.org/10.5281/zenodo.3509134"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Tyson"
      ],
      "givenNames": [
       "AL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rousseau"
      ],
      "givenNames": [
       "CV"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Niedworok"
      ],
      "givenNames": [
       "CJ"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib30",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1101/2020.10.21.348771"
     }
    ],
    "isPartOf": {
     "name": "bioRxiv",
     "type": "Periodical"
    },
    "title": "A deep learning algorithm for 3D cell detection in whole mouse brain image datasets",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Tyson"
      ],
      "givenNames": [
       "AL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rousseau"
      ],
      "givenNames": [
       "CV"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib31",
    "title": "brainreg: automated 3D brain registration with support for multiple species and atlases",
    "type": "Article",
    "url": "https://doi.org/10.5281/zenodo.3991718"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Wang"
      ],
      "givenNames": [
       "Q"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ding"
      ],
      "givenNames": [
       "SL"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Li"
      ],
      "givenNames": [
       "Y"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Royall"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Feng"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Lesnar"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Graddis"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Naeemi"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Facer"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ho"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dolbeare"
      ],
      "givenNames": [
       "T"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Blanchard"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dee"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wakeman"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hirokawa"
      ],
      "givenNames": [
       "KE"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Szafer"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sunkin"
      ],
      "givenNames": [
       "SM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Oh"
      ],
      "givenNames": [
       "SW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bernard"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Phillips"
      ],
      "givenNames": [
       "JW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hawrylycz"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Koch"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zeng"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Harris"
      ],
      "givenNames": [
       "JA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ng"
      ],
      "givenNames": [
       "L"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib32",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.cell.2020.04.007"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 32386544
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Cell",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 181
    },
    "pageEnd": 953,
    "pageStart": 936,
    "title": "The allen mouse brain common coordinate framework: a 3D reference atlas",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Winnubst"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bas"
      ],
      "givenNames": [
       "E"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ferreira"
      ],
      "givenNames": [
       "TA"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Wu"
      ],
      "givenNames": [
       "Z"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Economo"
      ],
      "givenNames": [
       "MN"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Edson"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Arthur"
      ],
      "givenNames": [
       "BJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Bruns"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Rokicki"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Schauder"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Olbris"
      ],
      "givenNames": [
       "DJ"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Murphy"
      ],
      "givenNames": [
       "SD"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ackerman"
      ],
      "givenNames": [
       "DG"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Arshadi"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Baldwin"
      ],
      "givenNames": [
       "P"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Blake"
      ],
      "givenNames": [
       "R"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Elsayed"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hasan"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Ramirez"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dos",
       "Santos"
      ],
      "givenNames": [
       "B"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Weldon"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Zafar"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Dudman"
      ],
      "givenNames": [
       "JT"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gerfen"
      ],
      "givenNames": [
       "CR"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Hantman"
      ],
      "givenNames": [
       "AW"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Korff"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sternson"
      ],
      "givenNames": [
       "SM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Spruston"
      ],
      "givenNames": [
       "N"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Svoboda"
      ],
      "givenNames": [
       "K"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Chandrashekar"
      ],
      "givenNames": [
       "J"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2019"
    },
    "id": "bib33",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1016/j.cell.2019.07.042"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 31495573
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Cell",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 179
    },
    "pageEnd": 281,
    "pageStart": 268,
    "title": "Reconstruction of 1,000 projection neurons reveals new cell types and organization of Long-Range connectivity in the mouse brain",
    "type": "Article"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Yaoyao"
      ],
      "givenNames": [
       "H"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib34",
    "title": "BrainMesh: A Matlab Gui for Rendering 3D Mouse Brain Structures",
    "type": "Article",
    "url": "https://github.com/Yaoyao-Hao/BrainMesh"
   },
   {
    "authors": [
     {
      "familyNames": [
       "Young"
      ],
      "givenNames": [
       "DM"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Duhn"
      ],
      "givenNames": [
       "C"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Gilson"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Nojima"
      ],
      "givenNames": [
       "M"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Yuruk"
      ],
      "givenNames": [
       "D"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Kumar"
      ],
      "givenNames": [
       "A"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Yu"
      ],
      "givenNames": [
       "W"
      ],
      "type": "Person"
     },
     {
      "familyNames": [
       "Sanders"
      ],
      "givenNames": [
       "SJ"
      ],
      "type": "Person"
     }
    ],
    "datePublished": {
     "type": "Date",
     "value": "2020"
    },
    "id": "bib35",
    "identifiers": [
     {
      "name": "doi",
      "propertyID": "https://registry.identifiers.org/registry/doi",
      "type": "PropertyValue",
      "value": "10.1002/cpns.104"
     },
     {
      "name": "pmid",
      "propertyID": "https://registry.identifiers.org/registry/pmid",
      "type": "PropertyValue",
      "value": 32981139
     }
    ],
    "isPartOf": {
     "isPartOf": {
      "name": "Current Protocols in Neuroscience",
      "type": "Periodical"
     },
     "type": "PublicationVolume",
     "volumeNumber": 94
    },
    "title": "Whole-Brain image analysis and anatomical atlas 3D generation using MagellanMapper",
    "type": "Article"
   }
  ],
  "title": "Visualizing anatomically registered data with brainrender",
  "metadata": {
   "interpreter": {
    "hash": "33d75bf8388798cb0e172bef54eed9620bd0161aea249865f83c044496ad6fe1"
   }
  }
 },
 "nbformat": 4,
 "nbformat_minor": 4
}