V1DD Key Tables#
The v1dd_public data release includes a number of annotation tables that help label the dataset.
You can see a list of data tables in the version 1196 materialization on the Data Annotation Framework page, and browse the tables with Table Viewer Dash App
Unless otherwise specified (i.e. via desired_resolution), all positions are in units of 9x9x45 nm/voxel resolution.
Common Fields#
Several fields (or column names) are common to many tables. These fall into two main classes: the spatial point columns that are how we assign annotations to cells via points in the 3d space and book-keeping columns, that are used internally to track the state of the data.
Spatial Point Columns#
Most tables have one or more Bound Spatial Points, which is a location in the 3d space that tells the annotation to remain associated with the root id at that location.
Bound spatial points have will have one prefix, usually pt (i.e. “point”) and three associated columns with different suffixes: _position, _supervoxel_id, and _root_id.
For a given prefix {pt}, the three columns are as follows:
The
{pt}_positionindicates the location of the point in 3d space.The
{pt}_supervoxel_idindicates a unique identifier in the segmentation, and is mostly internal bookkeeping.The
{pt}_root_idindicates the root id of the annotation at that location.
Book-keeping Columns#
Several columns are common to many or all tables, and mostly used as internal book-keeping. Rather than describe these for every table, they will just be mentioned briefly here:
Column |
Description |
|---|---|
|
A unique ID specific to the annotation within that table. |
|
The date that the annotation was created. |
|
Internal bookkeeping column, should always be |
|
Some tables reference other tables, particularly the nucleus table. If present, this column will be the same as |
|
For reference tables, the data shows both the created/valid/id of the reference annotation and the target annotation. The values with the |
Synapse Table#
Table name: synapses_v1dd
The only synapse table is synapses_pni_v2. This is by far the largest table in the dataset with 600 million entries, one for each synapse.
It contains the following columns (in addition to the bookkeeping columns):
Column |
Description |
|---|---|
|
The bound spatial point data for the presynaptic side of the synapse. |
|
The bound spatial point data for the postsynaptic side of the synapse. |
|
The size of the synapse in voxels. This correlates well, but not perfectly, with the surface area of synapse. |
|
A position in the center of the detected synaptic junction. Of all points in the synapse table, this is usually the closest point to the surface (and thus mesh) of both neurons. Because it is at the edge of cells, it is not associated with a root id. |
NOTE: this table is in a resolution of 9.7x9.7x45 nm resolution.
# Synapse query: outputs
client.materialize.synapse_query(pre_ids=example_root_id, desired_resolution=[1,1,1])
# Synapse query: inputs
client.materialize.synapse_query(post_ids=example_root_id, desired_resolution=[1,1,1])
The table synapse_target_predictions_ssa is a reference table on synapses_v1dd and adds the following column for a subset of all synapses.
Column |
Description |
|---|---|
|
postsynaptic compartment predictions, one of: soma, spine, shaft |
Example data access
# Standard query
client.materialize.query_table('synapse_target_predictions_ssa', limit=10)
# Content-aware query
client.materialize.tables.synapse_target_predictions_ssa(post_pt_root_id=example_root_id).query()
Nucleus Tables#
The ‘nucleus centroid’ of a cell is unlikely to change with proofreading, and so is a useful static identifier for a given cell. The results of automatic nucleus segmentation and neuron-detection are avialable in the following tables. These tables are often the ‘reference’ table for other annotations.
Nucleus Detection Table#
Table name: nucleus_detection_v0
Nucleus detection has been used to define unique cells in the dataset.
Distinct from the neuronal segmentation, a convolutional neural network was trained to segment nuclei.
Each nucleus detection was given a unique ID, and the centroid of the nucleus was recorded as well as its volume.
Many other tables in the dataset are reference tables on nucleus_detection_v0, meaning they are linked by the same annotation id.
The id of the segmented nucelus, a 6-digit integer, is static across data versions and for this reason is the preferred method to identify the same ‘cell’ across time.
The key columns of nucleus_detection_v0 are:
Column |
Description |
|---|---|
|
6-digit number of the segmentation for that nucleus; ‘nucleus ID’. |
|
Bound spatial point columns associated with the centroid of the nucleus. |
Note that the id column is the nucleus ID, also called the ‘soma ID’ or the ‘cell ID’.
# Standard query
client.materialize.query_table('nucleus_detection_v0')
# Content-aware query
client.materialize.tables.nucleus_detection_v0(id=example_nucleus_id).query()
Cell Type Tables#
There are several tables that contain information about the cell type of neurons in the dataset, with each table representing a different method of doing the classificaiton.
Because each method requires a different kind of information, not all cells are present in all tables.
Each of the cell types tables has the same format and in all cases the id column references the nucleus id of the cell in question.
Multifeature broad cell type#
Table name: `cell_type_multifeature_v1
The general approach here is to cell type neurons through:
Dendritic features
Somatic features
Spine and target compartment features
Feature extraction is found in other places, this work is focused solely on processing these features. Moreover, it builds on a rich collection of existing cell typing, particularly at the level of excitatory/inhibitory classification.
Note: Only cells whose cell bodies are at least 50 microns from the borders of the dataset were used. This is not a strict limitation, but the intent was to get a large population of cells that did not have strong boundary-dominated truncation as a first pass. Many of the features would be robust to more truncation, but that is another project.
For technical details see: AllenInstitute/v1dd_multifeature_cell_typing
Column |
Description |
|---|---|
|
Soma ID for the cell. |
|
Bound spatial point columns associated with the centroid of the cell nucleus. |
|
|
|
One of several cell types, detailed below |
Cell subtypes defined from using soma, nucleus, dendrite, and spine features.
Excitatory neurons are labeled by projection category (IT, ET, NP, CT, and SP for subplate).
Inhibitory neurons follow labels based on targeting such as ITC (inhibitory targeting), STC (sparsely targeting), PTC (perisomatic targeting), and DTC (dendrite targeting), but might align more with molecular class than exact targeting for a given neuron, particularly among ITC/VIP cells.
For details about cell subtypes, reference this nomenclature page or the following shorthand.
Broad cell types
Cell Type |
Subclass |
Description |
|---|---|---|
|
Excitatory |
Layer 2 intratelencephalic cells |
|
Excitatory |
Layer 3 intratelencephalic cells |
|
Excitatory |
Layer 4 intratelencephalic cells |
|
Excitatory |
Layer 5 intratelencephalic cells |
|
Excitatory |
Layer 5 extratelencephalic cells |
|
Excitatory |
Layer 5 near-projecting cells |
|
Excitatory |
Layer 6 intratelencephalic cells |
|
Excitatory |
Layer 6 corticothalamic cells |
|
Excitatory |
Layer 6 subplate cells |
|
Inhibitory |
Perisomatic targeting cells, a cluster of inhibitory neurons that target the soma and proximal dendrites of excitatory neurons. Approximately corresponds to basket cells. |
|
Inhibitory |
Dendrite targeting cells, a cluster of inhibitory neurons that target the distal dendrites of excitatory neurons. Most SST cells would be DTCS. |
|
Inhibitory |
Sparsely targeting cells, a cluster of inhibitory neurons that don’t concentrate multiple synapses onto the same target neurons. Many neurogliaform cells and layer 1 interneurons fall into this category. |
|
Inhibitory |
Inhibitory targeting cells, a cluster of inhibitory neurons that preferentially target other inhibitory neurons. Most VIP cells would be ITCs. |
Multifeature fine cell type#
Table name: cell_type_multifeature_v1_fine
A similar process to cell_type_multifeature_v1 above, but with more fine splitting between subgroups. Note: this is under active development, reference this nomenclature page for more.
Neuron-soma table#
Table name: neurons_soma_model
A subset of nucleus detections predicted be neurons from a model trained on soma and nucleus features. Objects with two cell bodies merged together will likely not be included here, as the classifier was trained on isolated soma only. The table is effectively a filter on nucleus_detection_v0 and has no additional information
Column |
Description |
|---|---|
|
6-digit number of the segmentation for that nucleus; ‘nucleus ID’. |
|
Bound spatial point columns associated with the centroid of the nucleus. |
Is returned only for the detected neuron objects. Nucleus detections not in this table may be non-neurons, multi-merged neurons, or heavily truncated neurons on the edge of the EM volume.
Proofreading Table#
Table name: proofreading_status_and_strategy
The table proofreading_status_and_strategy describes the status of cells that have undergone manual proofreading.
Because of the inherent difference in the difficulty and time required for different kinds of proofreading, we describe the status of axons and dendrites separately.
Each compartment status may be either:
FALSE: indicates no comprehensive proofreading has been performed, or is not applicable.TRUE: indicates that false merges have been comprehensively removed, and the compartment is at least ‘clean’. Consult thestrategycolumn if completeness of the compartment is relevant to your research.
An axon or dendrite labeled as status=TRUE can be trusted to be correct, but may not be complete. The degree of completion can be read from the strategy column. For more information, please see Proofreading and Data Quality.
The key columns are
Column |
Description |
|---|---|
|
ID within the proofreading table (not cell id). |
|
Bound spatial point columns associated with the centroid of the cell nucleus being proofread. |
|
The root id of the neuron when it the proofreading assessment was made. NOTE: if this does not match the |
|
Boolean, |
|
Boolean, |
|
The strategy empolyed when proofreading the dendrite. See strategy table below for details |
|
The strategy employed when proofreading the axon. See strategy table below for details |
The specific strategies are as follows:
Proofreading Strategies
Strategy |
Description |
|---|---|
|
No cleaning, and no extension. Indicates an entry in |
|
The dendrite had incorrectly-merged axon and dendritic segments comprehensively removed, meaning the input synapses are accurate. The dendrite may be incorrectly truncated by segmentation error. Not all dendrite tips have been checked for extension. No comprehensive attempt was made to re-attach spine heads. |
|
The dendrite had incorrectly-merged axon and dendritic segments comprehensively removed, meaning the input synapses are accurate. Every tip was identified, manually inspected, and extended if possible. No comprehensive attempt was made to re-attach spine heads. |
|
The axon was extended outward from the soma, following each branch to its termination. Output synapses represent a sampling of potential partners. |
|
Axon was extended outward from the soma, following each branch to its termination. After initial extension, every endpoint was identified, manually inspected, and extended again if possible. Output synapses represent a largely complete sampling of partners. |
Example data access
# Standard query
client.materialize.query_table('proofreading_status_and_strategy')
# Content-aware query
client.materialize.tables.proofreading_status_and_strategy(status_axon='t').query()
Thalamic proofreading#
Table name: thalamic_proofreading
Table of manually identified thalamic axons selected for proofreading. Treat this as a ‘cell type’ table for thalamic axons, but check the proofreading_status_and_strategy for the current status of the axon.
Column |
Description |
|---|---|
|
The bound spatial point data associated with the axon |
|
The root id look up for the thalamic axons |
|
The type of synapse, all are |
Functional Coregistration Tables#
Table name: functional_coregistration_manual_2
To relate the structural data to functional data, cell bodies must be coregistered between the functional imaging and EM volumes. This table provides the lookup to match to the functional sessions, with detail on the column and volume which define the session, plane and roi which uniquely identify the associated functional cells
Note, multiple ROI can be registered to the same neuron in EM, as planes were close enough together to intersect a cell multiple times, and the central column (#5) overlaps spatially with 1-4
This is for the Golden Mouse 409828 only.
The column descriptions are:
Column |
Description |
|---|---|
|
Bound spatial point columns associated with the centroid of the cell nucleus. |
|
which of the 5 sets of volumes which are stacked across layers of cortex, within the same location on the cortical surface (1-5) |
|
which of the 5 depth organized scan sessions within a column the data came from, lower numbers are located closer the the cortical surface. (1-5) |
|
which of the scan planes within the multi-plane volume this was taken from (smaller planes are closer to the cortical surface) (0-5) |
|
The ROI index within the plane. Only unique within one combination of |
|
The residual distance between the functional and the assigned structural points after transformation, in microns. (0 for manual table) Smaller values indicate a closer match. |
|
A separation score, measuring the difference between the residual distance to the assigned neuron and the distance to the nearest non-assigned neuron, in microns. This can be negative if the non-assigned neuron is closer than the assigned neuron. Larger values indicate fewer nearby neurons that could be confused with the assigned neuron.(0 for manual table) |
This is NOT a reference table on nucleus_detection_v0. You will have to match the root ids between other CAVE tables.
Data access example:
# Standard query
client.materialize.query_table('functional_coregistration_manual_2')
# Content-aware query
client.materialize.tables.functional_coregistration_manual_2(pt_root_id)=example_root_id).query()
Summary of tables#
Table Name |
Number of Annotations |
Description |
|---|---|---|
|
639,326,124 |
The locations of synapses and the segment ids of the pre and post-synaptic automated synapse detection |
|
165,533,529 |
Spine/shaft/soma predictions on synapses |
|
207,455 |
The locations of nuclei detected via a fully automated method |
|
207,455 |
A view that looks up |
|
88,030 |
A subset of nucleus detections predicted be neurons from a model trained on soma and nucleus features. |
|
571 |
A table indicating the association between individual units in the functional imaging data and nuclei in the structural data, derived from human powered matching. |
|
3335 |
A table indicating which neurons have been proofread on their axons or dendrites |
|
48,077 |
Reference annotations indicating the output of a model predicting cell types across the dataset with broad cell types |
|
47,965 |
Cell types with fine categorization (perhaps too fine!) from using soma, nucleus, dendrite, and spine features. Excitatory neurons are labeled by projection category (IT, ET, NP, CT, and SP for subplate). Inhibitory neurons follow labels based on targeting such as ITC (inhibitory targeting), STC (sparsely targeting), PTC (perisomatic targeting), and DTC (dendrite targeting), |
|
99 |
Table of putative thalamocortical axons selected for proofreading. Get proofreading status from |