Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

API:

...

Mouse

...

Connectivity

...

Resources

Table of Contents

Mouse Connectivity Projection Data: Informatics Data Processing Pipeline

The primary data of the Allen Mouse Brain Connectivity Atlas consists of high-resolution images of axonal projections targeting different anatomic regions or various cell types using Cre-dependent specimens. The informatics data processing pipeline produces results that enable the navigation, analysis and visualization of this data.

The output of the pipeline is quantified signal values at a grid voxel level and at a structure level according to the integrated reference atlas ontology. The grid level data are used downstream to provide an on-the-fly data and search service and to support visualization of spatial relationships.

Refer to the informatics whitepaper for detailed methods used in the pipeline.

Mouse Connectivity Projection Experiments

Experimental data from the Atlas is associated with the "Mouse Connectivity Projection" Product.

Each Specimen is injected with a viral tracer that labels axons by expressing a fluorescent protein. For each experiment, the injection site is analyzed and assigned a primary injection structure and if applicable a list of secondary injection structures.

Labeled axons are visualized using serial two-photon tomography. A typical dataset consists of 140 coronal images at 100 µm sampling density. Each image has 0.35 µm pixel resolution and raw data is in 16-bit per channel format.

From the API, detailed information about images, injection annotation and transgenic lines can be obtained using RMA queries.

Examples:

...

  • %5Bid$eq126862385%5D,rma::include,specimen(injections(

...

  • structure%5Bid$eq385%5D)),equalization,sub_images,rma::options%5Border$eq'sub_images.section_number$asc'%5D

...

  • )

Image Added
Figure: Projection dataset (id=126862385)

...

with

...

injection

...

in

...

the

...

primary

...

visual

...

area

...

(VISp)

...

as

...

visualized

...

in

...

the

...

web

...

application

...

image

...

viewer.

...

To

...

provide

...

a

...

uniform

...

look

...

over

...

all

...

experiments,

...

default

...

window

...

and

...

level

...

values

...

were

...

computed

...

using

...

intensity

...

histograms.

...

For

...

each

...

experiment,

...

the

...

upper

...

threshold

...

defaults

...

to

...

(2.33

...

x

...

the

...

95th

...

percentile

...

value)

...

for

...

the

...

red

...

channel

...

and

...

(6.33

...

x

...

the

...

95th

...

percentile

...

value)

...

for

...

the

...

green

...

channel.

...

The

...

default

...

threshold

...

can

...

be

...

used

...

to

...

download

...

images

...

and/or

...

image

...

region

...

in

...

8-bit

...

per

...

channel

...

image

...

format.

...

Examples:

...

...

3-D Reference Model for Mouse Connectivity

Wiki Markup
The backbone of the automated pipeline is an annotated 3-D reference space. Similarly to gene expression data in the [Allen Mouse Brain Atlas|http://mouse.brain-map.org/], each projection dataset is registered to the \[3-D reference space\](#3-D_Reference_Models) built upon the coronal [Allen Reference Atlas|http://mouse.brain-map.org/static/atlas] specimen.

...

To

...

avoid

...

possible

...

bias

...

introduced

...

by

...

using

...

a

...

single

...

specimen

...

as

...

a

...

registration

...

target,

...

the

...

Nissl-based

...

3-D

...

reference

...

volume

...

was

...

not

...

directly

...

used.

...

Instead,

...

a

...

large

...

number

...

of

...

brains

...

were

...

mapped

...

in

...

advanced

...

and

...

averaged

...

to

...

form

...

the

...

registration

...

target.

...

This

...

averaged

...

template

...

maybe

...

updated

...

periodically

...

to

...

include

...

more

...

brain

...

specimens

...

and

...

is

...

available

...

for

...

download

...

as

...

an

...

unsigned

...

16-bit

...

grayscale

...

volume

...

through

...

this

...

link

...

.

As with gene expression datasets, an image synchronization service is available to find corresponding position between datasets within the Mouse Connectivity Projection product and across to datasets in the Mouse Brain and Developing Mouse Brain products.

Image Added

Figure: Point-based image synchronization. Multiple image-series in the Zoom-and-Pan (Zap) viewer can be synchronized to the same approximate location. Before and after synchronization screenshots show projection data with injection in the superior colliculus (SCs), primary visual area (VISp) anteolateral visual area (VISal), and the relevant coronal plates of the Allen Reference Atlas. All experiments show strong signal in the thalamus.

Projection Data Segmentation

For every Projection image, a gray scale mask is generated that identifies pixels corresponding to labeled axon trajectories. The segmentation algorithm is based on image edge/line detection and morphological filtering. The segmentation mask image is the same size and pixel resolution as the primary projection image and can be downloaded.

Image Added

Figure: Signal detection for projection data with injection in the primary motor area. Screenshot of a segmentation mask showing detected signal in the ventral posterolateral nucleus of the thalamus (VPL), internal capsule (int), caudoputamen (CP) and supplemental somatosensory area (SSs). In the Web application, the mask is color-coded for display: green indicates a pixel is part of an edge-like object while yellow indicates pixels that are part of a more diffuse region.

Projection Data Gridding

For each dataset, the gridding module creates a low resolution 3-D summary of the labeled axonal trajectories and resamples the data to the common coordinate space of the 3-D reference model. Casting all data into a canonical space allows for easy cross-comparison between datasets. The projection data grids can also be viewed directly as 3-D volumes or used for analysis (i.e. afferent and correlative searches).

Each image in a dataset is divided into a 100 x 100 µm grid. Pixel-based statistics are computed using information from the primary image and the segmentation mask:

  • projection density = sum of detected pixels / sum of all pixels in division
  • projection intensity = sum of detected pixel intensity / sum of detected pixels
  • projection energy = projection intensity * projection density

Wiki Markup
The resulting 3-D grid is then transformed into the standard reference space. Grid data can be downloaded for each SectionDataSet using the \[3-D Grid Data Service\](/doc/index.html#Downloading_3-D_Expression_Grid_Data). The service returns a zip file containing the volumetric data for density, intensity and/or energy in an uncompressed format with a simple text header file in [MetaImage|http://www.itk.org/Wiki/MetaIO/Documentation] format. Structural annotation for each grid voxel can be obtained via the ReferenceSpace [gridAnnotation|http://iwarehouse/api/v2/well_known_file_download/159081322] volume file at 100 µm grid resolution.

...

Examples:

...

...

Example Matlab code snippet to read in the 100 µm density grid volume:

    % Download and unzip the density grid file for VISp SectionDataSet   

Wiki Markup
&nbsp;&nbsp;&nbsp; <span 

...

style="color: #339966

...

">% 100 micron volume 

...

size</span>
&nbsp;&nbsp;&nbsp; sizeGrid = \[133 81 115\];
&nbsp;&nbsp;&nbsp; 

...

<span style="color: #339966

...

">% DENSITY = 3-D matrix of projection density grid 

...

volume</span>
&nbsp;&nbsp;&nbsp; fid = fopen('density.raw', 'r', 'l' );
&nbsp;&nbsp;&nbsp; DENSITY = fread( fid, prod(sizeGrid), 'float' );
&nbsp;&nbsp;&nbsp; fclose( fid );
&nbsp;&nbsp;&nbsp; DENSITY = reshape(DENSITY,sizeGrid)

...

;

Wiki Markup
&nbsp;&nbsp;&nbsp; 

...

<span style="color: #339966

...

">% Display one coronal and one sagittal 

...

section</span>
&nbsp;&nbsp;&nbsp; figure;imagesc(squeeze(DENSITY (95,:,\:)));caxis(\[0,1\]);colormap(hot);
&nbsp;&nbsp;&nbsp; figure;imagesc(squeeze(DENSITY (:,:,72)));caxis(\[0,1\]);colormap(hot);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

...

Projection

...

Structure

...

Unionization

...

Projection

...

signal

...

statistics

...

can

...

be

...

computed

...

for

...

each

...

structure

...

delineated

...

in

...

the

...

reference

...

atlas

...

by

...

combining

...

or

...

unionizing

...

grid

...

voxels

...

with

...

the

...

same

...

3-D

...

structural

...

label.

...

While

...

the

...

reference

...

atlas

...

is

...

typically

...

annotated

...

at

...

the

...

lowest

...

level

...

of

...

the

...

ontology

...

tree,

...

statistics

...

at

...

upper

...

level

...

structures

...

can

...

be

...

obtained

...

by

...

combining

...

measurements

...

of

...

the

...

hierarchical

...

children

...

to

...

obtain

...

statistics

...

for

...

the

...

parent

...

structure.

...

The

...

unionization

...

process

...

also

...

separates

...

out

...

the

...

left

...

versus

...

right

...

hemisphere

...

contributions

...

as

...

well

...

as

...

the

...

injection

...

versus

...

non-injection

...

components.

...

Projection

...

statistics

...

are

...

encapsulated

...

as

...

a

...

ProjectionStructureUnionize

...

object

...

associated

...

with

...

one

...

Structure

...

,

...

either

...

left,

...

right

...

or

...

both

...

Hemispheres

...

and

...

one

...

SectionDataSet

...

.

...

Example:

Wiki Markup
Download structure projection signal statistics for one VISp injection experiment exclusive of injection area\](/api/v2/data/ProjectionStructureUnionize/query.xml?criteria=\[section_data_set_id$eq126862385\],\[is_injection$eqfalse\]&num_rows=5000&include=structure)
\* \[Download injection site statistics for the same experiment\](/api/v2/data/ProjectionStructureUnionize/query.xml?criteria=\[section_data_set_id$eq126862385\],\[is_injection$eqtrue\]&num_rows=5000&include=structure)

...

ProjectionStructureUnionize

...

data

...

is

...

used

...

in

...

the

...

web

...

application

...

to

...

display projection summary bar graphs.
   
   
<a href="#"

...

onmouseover="hover"

...

title="Back

...

to

...

top"><img

...

width="18px"

...

height="20px"

...

src="/images/back_to_top.png"

...

/></a>

...

###

...

Comparing

...

Projection

...

Data

...

Grids

...

and

...

Gene

...

Expression

...

Grids

...

Due

...

to

...

section

...

sampling

...

density,

...

projection

...

data

...

grids

...

are

...

at

...

100µm

...

resolution

...

while

...

gene

...

expression

...

grids

...

are

...

at

...

200µm

...


resolution.

...

Upsampling

...

with

...

appropriate

...

interpolation

...

of

...

the

...

gene

...

expression

...

data

...

is

...

necessary

...

in

...

order

...

to

...

numerically

...


compare

...

between

...

the

...

two

...

different

...

types

...

of

...

data.

...

  When

...

interpolating

...

the

...

data,

...

"no

...

data"

...

(-1)

...

voxels

...

needs

...

to

...

be

...

handled

...


specifically.

...

Example

...

Matlab

...

code

...

snippet

...

to

...

upsample

...

gene

...

expression

...

grid

...

with

...

"no

...

data"

...

handling:

...

    % Download and unzip energy volume file for gene Rasd2 coronal SectionDataSet 73636089
    mkdir('Rasd2_73636089');

...


    urlwrite('http://api.brain-map.org/grid_data/download/74819249?include=density',

...

'temp.zip');

...


    unzip('temp.zip','Rasd2_

...

73636089');

    % Download and unzip density volume file for BLAa injection SectionDataSet 113144533
    mkdir('BLAa_113144533');

...


    urlwrite('http://api.brain-map.org/grid_data/download/113144533?include=density',

...

'temp.zip');

...


    unzip('temp.zip','BLAa_113144533')

...

;

Wiki Markup
&nbsp;&nbsp;&nbsp; % Gene expression grids are at 200 micron resolution.
&nbsp;&nbsp;&nbsp; geneGridSize = \[67 41 58\];
&nbsp;&nbsp;&nbsp; fid = fopen('Rasd2_73636089/density.raw', 'r', 'l'&nbsp; );
&nbsp;&nbsp;&nbsp; Rasd2 = fread( fid, prod(geneGridSize), 'float' );
&nbsp;&nbsp;&nbsp; fclose(fid);
&nbsp;&nbsp;&nbsp; Rasd2 = reshape( Rasd2, geneGridSize );

...

Wiki Markup
&nbsp;&nbsp;&nbsp; % Projection grids are at 100 micron resolution
&nbsp;&nbsp;&nbsp; projectionGridSize = \[133 81 115\];
&nbsp;&nbsp;&nbsp; fid = fopen('BLAa_113144533/density.raw', 'r', 'l'&nbsp; );
&nbsp;&nbsp;&nbsp; BLAa = fread( fid, prod(projectionGridSize), 'float' );
&nbsp;&nbsp;&nbsp; fclose(fid);
&nbsp;&nbsp;&nbsp; BLAa = reshape( BLAa, projectionGridSize );

...

Wiki Markup
&nbsp;&nbsp;&nbsp; % Upsample gene expression grid to same dimension as projection grid using linear interpolation
&nbsp;&nbsp;&nbsp; \[xi,yi,zi\] = meshgrid(1:0.5:41,1:0.5:67,1:0.5:58); %note: matlab transposes x-y
&nbsp;&nbsp;&nbsp; d = Rasd2; d(d<0) = 0; % fill in missing data as zeroes
&nbsp;&nbsp;&nbsp; Rasd2_100 = interp3(d ,xi,yi,zi,'linear');

...

    % Handle "no data" (-1)

...

voxels.

...


    % Create a mask of "data"

...

vs

...

"no

...

data"

...

voxels

...

and

...

apply

...

linear

...

interpolation
    m = (Rasd2  >= 0);

...

mi

...

=

...

interp3(m,xi,yi,zi,'linear');

...

    % Normalize data by dividing by interpolated mask. Assign value of "-1"

...

to

...

"no data" voxels.
    Rasd2_100

...

=

...

Rasd2_100

...

./

...

mi;

...


    Rasd2_100(

...

mi

...

<=

...

0

...

)

...

=

...

-1;

...

Wiki Markup
&nbsp;&nbsp;&nbsp; % Create a merged image of one coronal plane;
&nbsp;&nbsp;&nbsp; gimg = squeeze(Rasd2_100(52,:,\:)); gimg = max(0,gimg); gimg = gimg / 0.025; gimg = min(1,gimg);
&nbsp;&nbsp;&nbsp; pimg = squeeze(BLAa(52,:,\:)); pimg = max(0,pimg); pimg = pimg / 0.8; pimg = min(1,pimg);
&nbsp;&nbsp;&nbsp; rgb = zeros(\[size(gimg),3\]); rgb(:,:,1) = gimg; rgb(:,:,2) = pimg;
&nbsp;&nbsp;&nbsp; figure; image(rgb);

...

<img

...

width="800px"

...

src="/images/UpsampleGeneExpressionGrid.jpg"

...

/>

...

*Figure:

...

*

...

ISH

...

SectionDataSet

...

(id=73636089)

...

for

...

gene

...

Rasd2

...

showing

...

enriched

...

expression

...

in

...

the

...

striatum

...

(left).

...


Projection

...

SectionDataSet

...

(id=73636089)

...

with

...

injection

...

in

...

the

...

anterior

...

part

...

of

...

the

...

basolateral

...

amygdalar

...

nucleus

...

(BLAa)

...


showing

...

projection

...

to

...

the

...

striatum

...

and

...

other

...

brain

...

areas

...

(center).

...

One

...

coronal

...

slice

...

of

...

the

...

BLAa

...

projection

...

density

...

grid

...


(green)

...

merged

...

with

...

an

...

upsampled

...

and

...

interpolated

...

Rasd2

...

expression

...

density

...

grid

...

(red).

...

<a

...

href="#"

...

onmouseover="hover"

...

title="Back

...

to

...

top"><img

...

width="18px"

...

height="20px"

...

src="/images/back_to_top.png"

...

/></a>