17 research outputs found

    Effects of a 5-HT1B Receptor Agonist on Locomotion and Reinstatement of Cocaine-Conditioned Place Preference after Abstinence from Repeated Injections in Mice

    No full text
    5-HT1B receptors (5-HT1BRs) modulate behavioral effects of cocaine. Here we examined the effects of the 5-HT1BR agonist 5-propoxy-3-(1,2,3,6-tetrahydro-4-pyridinyl)-1H-pyrrolo[3,2-b]pyridine (CP94253) on spontaneous and cocaine-induced locomotion and on cocaine-primed reinstatement of conditioned place preference (CPP) in male mice given daily repeated injections of either saline or cocaine (15 mg/kg, IP) for 20 days. In the locomotor activity experiment, testing occurred both 1 and 20 days after the final injection. In the CPP experiment, mice underwent conditioning procedures while receiving the last of their daily injections, which were given either during or ≥2 h after CPP procedures. The CPP procedural timeline consisted of baseline preference testing (days 12–13 of the chronic regimen), conditioning (days 14–19, 2 daily 30-min sessions separated by 5 h), CPP test (day 21), extinction (days 22–34; no injections), CPP extinction test (day 35), and reinstatement test (day 36). Mice that had not extinguished received additional extinction sessions prior to reinstatement testing on day 42. On test days, mice were pretreated with either saline or CP94253 (10 mg/kg, IP). Testing began 30 min later, immediately after mice were primed with either saline or cocaine (5 mg/kg for locomotion; 15 mg/kg for reinstatement). We found that CP94253 increased spontaneous locomotion in mice receiving repeated injections of either saline or cocaine when tested 1 day after the last injection, but had no effect on spontaneous locomotion after 20 days abstinence from repeated injections. Surprisingly, cocaine-induced locomotion was sensitized regardless of whether the mice had received repeated saline or cocaine. CP94253 attenuated expression of the sensitized locomotion after 20 days abstinence. A control experiment in noninjected, drug-naïve mice showed that CP94253 had no effect on spontaneous or cocaine-induced locomotion. Mice reinstated cocaine-CPP when given a cocaine prime, and CP94253 pretreatment attenuated cocaine reinstatement.The findings suggest that stress from repeated saline injections and/or co-housing with cocaine-injected mice may cross-sensitize with cocaine effects on locomotion and that CP94253 attenuates these effects, as well as reinstatement of cocaine-CPP. This study supports the idea that 5-HT1BR agonists may be useful anti-cocaine medications

    BioNet: A Python interface to NEURON for modeling large-scale networks.

    No full text
    There is a significant interest in the neuroscience community in the development of large-scale network models that would integrate diverse sets of experimental data to help elucidate mechanisms underlying neuronal activity and computations. Although powerful numerical simulators (e.g., NEURON, NEST) exist, data-driven large-scale modeling remains challenging due to difficulties involved in setting up and running network simulations. We developed a high-level application programming interface (API) in Python that facilitates building large-scale biophysically detailed networks and simulating them with NEURON on parallel computer architecture. This tool, termed "BioNet", is designed to support a modular workflow whereby the description of a constructed model is saved as files that could be subsequently loaded for further refinement and/or simulation. The API supports both NEURON's built-in as well as user-defined models of cells and synapses. It is capable of simulating a variety of observables directly supported by NEURON (e.g., spikes, membrane voltage, intracellular [Ca++]), as well as plugging in modules for computing additional observables (e.g. extracellular potential). The high-level API platform obviates the time-consuming development of custom code for implementing individual models, and enables easy model sharing via standardized files. This tool will help refocus neuroscientists on addressing outstanding scientific questions rather than developing narrow-purpose modeling code

    Brain Modeling ToolKit: An open source software suite for multiscale modeling of brain circuits

    No full text
    Experimental studies in neuroscience are producing data at a rapidly increasing rate, providing exciting opportunities and formidable challenges to existing theoretical and modeling approaches. To turn massive datasets into predictive quantitative frameworks, the field needs software solutions for systematic integration of data into realistic, multiscale models. Here we describe the Brain Modeling ToolKit (BMTK), a software suite for building models and performing simulations at multiple levels of resolution, from biophysically detailed multi-compartmental, to point-neuron, to population-statistical approaches. Leveraging the SONATA file format and existing software such as NEURON, NEST, and others, BMTK offers a consistent user experience across multiple levels of resolution. It permits highly sophisticated simulations to be set up with little coding required, thus lowering entry barriers to new users. We illustrate successful applications of BMTK to large-scale simulations of a cortical area. BMTK is an open-source package provided as a resource supporting modeling-based discovery in the community

    Computational performance.

    No full text
    <p>(<b>A</b>) Scaling of wall time duration (normalized by the duration on a single CPU core) with the number of CPU cores for the simulation set up (blue circles) and run (red circles) of the layer 4 model (see <a href="http://www.plosone.org/article/info:doi/10.1371/journal.pone.0201630#pone.0201630.g005" target="_blank">Fig 5</a>). The ideal scaling is indicated by the dashed line. (<b>B</b>) Wall time increase when computing the extracellular potential for both set up (blue circles) and run (red circles) durations. (<b>C</b>) Scaling of the wall time with the simulated time for a long simulation. The non-ideal scaling with the increase in the number of cores corresponds to the deviations from the dashed line in (A).</p

    Running simulations.

    No full text
    <p>(<b>A</b>) Relationships among various elements involved in running simulations with BioNet. The pre-built network (blue), is passed to the main Python script (pink) that loads custom user modules and runs BioNet/NEURON to produce the simulation output (purple). (<b>B</b>) The stages of the simulation executed by the main Python script. (<b>C</b>) Algorithm for distributing the cells over a parallel architecture. This simple example shows 10 cells distributed across 4 parallel processes (typically each parallel process corresponds to a CPU core). Cells are assigned to each process in turn (a “round-robin” assignment).</p

    Building networks.

    No full text
    <p>(<b>A</b>) High-level specification of a simple example network (left) and corresponding builder API commands (right). The model is composed of two cell types: inhibitory (blue) and excitatory (red), which exchange connections both across and between the cell types. The API commands define the number of cells of each type to be created, connectivity rule (con_func) to use and associated parameters (con_func_params) as well as additional edge parameters (edge_type_params). (<b>B</b>) Illustration of creating cells (left) where each cell type may include both biophysical (morphological reconstruction) and LIF models (circles). The corresponding API commands for adding nodes for the biophysically detailed subset of excitatory populations are illustrated on the right. Here we specify the number of nodes to be created (N), a type of a model (model_type), the dynamical cell models (model_template) and the corresponding model parameters (dynamics_params), morphologies (morphology_file), and positions of cell somata (positions) that were computed with a user-defined function. (<b>C</b>) Illustration of connecting the cells into a network (left) and the corresponding API commands for adding a particular subset of connections (right). Here, the cells satisfying the query for both the source and target nodes will be connected using a function (connection_rule) with parameters (connection_params). The additional edge_type attributes are shared across the added edges and include the synaptic strength (syn_weight), function modulating synaptic strength (weight_function), dynamical synaptic model (model_template) and corresponding parameters (dynamics_params), a conduction delay (delay), as well as the locations where synapses could be placed on a cell (target_sections, distance_range).</p

    Computing extracellular potential.

    No full text
    <p>(<b>A</b>) Schematic of the compartmental model of a cell in relationship to the recording electrode. The calculation of the extracellular potential involves computing the transfer resistances <i>R<sub>mn</sub></i> between each n-th dendritic segment and m-th recording site on the electrode. (<b>B</b>) Extracellular spike “signatures” of individual cells recorded on the mesh electrode (black dots), using two single-cell models from the layer 4 network model as examples: PV2 (left) and Nr5a1 (right). (<b>C</b>) Modeled extracellular recordings with the linear electrode positioned along the axis of the cylinder in the layer 4 model (left). Extracellular potential responses (right) show all simulated data (color map) as well as from six select channels (black traces superimposed on the color map).</p

    Application example: Model of the layer 4 in mouse V1.

    No full text
    <p>(<b>A</b>) The <i>in silico</i> study [<a href="http://www.plosone.org/article/info:doi/10.1371/journal.pone.0201630#pone.0201630.ref009" target="_blank">9</a>] mimicked <i>in vivo</i> visual physiology experiments (bottom), where a mouse watches visual stimuli such as, e.g., drifting gratings, while the activity of neurons in its cortex are recorded. (Center) The top view of the cortical surface, with boundaries of cortical areas delineated (VISp is V1). The inner boundary encloses part of the tissue that was modeled using biophysically detailed cells, whereas the tissue between the inner and outer circles was modeled using the simplified LIF cells. (Top) The 3D visualization of the layer 4 model (only 10% of cells are shown for clarity). (<b>B</b>) Example of synaptic innervation of the biophysically detailed cell models of each type. Synapses (depicted as spheres) are color coded according to their source cell type. (<b>C</b>) Rastergrams of the external inputs: (Top) “background” input (BKG, khaki) that switches between “ON” to “OFF” states, loosely representing different brain states; (Bottom) LGN input (green) corresponding to the visual response to 0.5 second gray screen (gray line) followed by 2.5 second drifting grating (black line). (<b>D</b>) The connection matrix showing the peak conductance strength for connections between each pair of cell types. (<b>E</b>) Simulation output: (Top) spike raster in the biophysical “core”. The node_ids are ordered such that cells with similar ids have similar preferred orientation angle. In this example, cells preferring ~0, ~180, and ~360 degrees are responding strongly to a horizontal drifting grating. (Bottom) somatic voltage traces and the corresponding calcium traces for example excitatory (red) and inhibitory (blue) cells.</p

    The SONATA data format for efficient description of large-scale network models

    Get PDF
    Increasing availability of comprehensive experimental datasets and of high-performance computing resources are driving rapid growth in scale, complexity, and biological realism of computational models in neuroscience. To support construction and simulation, as well as sharing of such large-scale models, a broadly applicable, flexible, and high-performance data format is necessary. To address this need, we have developed the Scalable Open Network Architecture TemplAte (SONATA) data format. It is designed for memory and computational efficiency and works across multiple platforms. The format represents neuronal circuits and simulation inputs and outputs via standardized files and provides much flexibility for adding new conventions or extensions. SONATA is used in multiple modeling and visualization tools, and we also provide reference Application Programming Interfaces and model examples to catalyze further adoption. SONATA format is free and open for the community to use and build upon with the goal of enabling efficient model building, sharing, and reproducibility
    corecore