nf-core/lsmquant
A pipeline for processing and analysis of light-sheet microscopy images.
Introduction
This document describes the output produced by the pipeline. Most of the plots are taken from the MultiQC report, which summarises results at the end of the pipeline.
The directories listed below will be created in the results directory after the pipeline has finished. All paths are relative to the top-level results directory.
Pipeline overview
The pipeline is built using Nextflow and processes data using the following steps:
- NumorphIntensity - Mesures intensity parameters for illumination correction
- NumorphAlign - Performs 2D rigid or 3D non-linear channel alignment
- NumorphStitch - Performs 2D iterative stitching of image tiles
- NumorphResample - Generate downsamppled images
- NumorphRegister - Performs registartion to the Allen Reference Atlas (ARA)
- [Mat2JSON] (#mat3json) - Converts
.mat
files to JSON - Pipeline information - Report metrics generated during the workflow execution
NumorphIntensity
Output files
Sample_id/intesnity/results
NM_variables.mat
: Contains input and calculated parameterssamples/
[channel]_x_y_z.tif
: Image comparing raw and adjusted image tiles for respective channel. Example for each tile of the middel z sliceflatfield_*.png
: Flatfield correction heatmap for each channeltile_adj_*.png
: Heatmap of tile positions displaying illumination correction factor for each tiley_adj_*.png
: Intensity correction factors along the Y-axis(using intensity profiles specifically for the LaVision Ultramicroscope II)
variables/
adj_params.mat
: Correction parametersthresholds.mat
: Intensity thresholds per channelpath_table.mat
: Image information table
NumorphIntensity calculates intensity thresholds and performs intensity adjustments in the y dimension and between image tile stacks on raw images. The process includes the MATLAB implementation of BaSiC for shading correction.
NumorphAlign
Output files
Sample_id/alignment/results
NM_variables.mat
: Contains input and calculated parameterssamples/
Sample_id_*_full.tif
: Aligned image for each channel
variables/
alignment_table.mat
: Alignment tablez_displacement_align.mat
: Z displacement matrix for given channels to the referencepath_table.mat
: Image information table
NumorphAlign performs rigid or non-rigind alignemnt of channels to a reference (nuclei) channel and determines z displacement per tile for each channel.
NumorphStitch
Output files
Sample_id/stitching/results
NM_variables.mat
: Contains input and calculated parametersstitched/
Sample_id_*_stitched.tif
: Stitched images per z slice
variables/
adj_params.mat
: Correction parametersthresholds.mat
: Intensity thresholds per channelpath_table.mat
: Image information tablestitch_tforms.mat
: Stitching informationadjusted_z.mat
: Adjusted z positions for each tilez_disp_matrix.mat
: Z displacement for adjecent tilesz_displacement_align.mat
: Z displacement matrix for given channels to the reference
NumorphStitch performs 2D iterative stitching.
NumorphResample
Output files
Sample_id/resampled/results
NM_variables.mat
: Contains input and calculated parametersSample_id_*.nii
: Downsampled image
NumorphResample downsamples the image resolition to macht the Allen Reference Atlas resolution befor registration.
NumorphRegister
Output files
Sample_id/results
-NM_variables.mat
: Contains input and calculated parameters -registered/*_MOV_*.nii
: Moving image from registration -registered/*_REF_*.nii
: Reference imgae from registration -variables/reg_params.mat
: Registration parameters
NumorphRegister performs image registration to the Allen Reference Atlas.
Mat2JSON
Output files
-
process/
*.json/*.csv
: Converted mat file
Mat2JSON converts a given .mat
file into a CSV
if the data is stored as a table datastructure or a JSON
for other nested datastructures.
Pipeline information
Output files
pipeline_info/
- Reports generated by Nextflow:
execution_report.html
,execution_timeline.html
,execution_trace.txt
andpipeline_dag.dot
/pipeline_dag.svg
. - Reports generated by the pipeline:
pipeline_report.html
,pipeline_report.txt
andsoftware_versions.yml
. Thepipeline_report*
files will only be present if the--email
/--email_on_fail
parameter’s are used when running the pipeline. - Reformatted samplesheet files used as input to the pipeline:
samplesheet.valid.csv
. - Parameters used by the pipeline run:
params.json
.
- Reports generated by Nextflow:
Nextflow provides excellent functionality for generating various reports relevant to the running and execution of the pipeline. This will allow you to troubleshoot errors with the running of the pipeline, and also provide you with other information such as launch commands, run times and resource usage.