16 research outputs found
FISBe: A real-world benchmark dataset for instance segmentation of long-range thin filamentous structures
<h2>General</h2>
<p>For more details and the most up-to-date information please consult our project page: <a href="https://kainmueller-lab.github.io/fisbe" target="_blank" rel="noopener">https://kainmueller-lab.github.io/fisbe</a>.</p>
<h2>Summary</h2>
<ul>
<li>A new dataset for neuron instance segmentation in 3d multicolor light microscopy data of fruit fly brains
<ul>
<li>30 completely labeled (segmented) images</li>
<li>71 partly labeled images</li>
<li>altogether comprising ∼600 expert-labeled neuron instances (labeling a single neuron takes between 30-60 min on average, yet a difficult one can take up to 4 hours)</li>
</ul>
</li>
<li>To the best of our knowledge, the first real-world benchmark dataset for instance segmentation of long thin filamentous objects</li>
<li>A set of metrics and a novel ranking score for respective meaningful method benchmarking</li>
<li>An evaluation of three baseline methods in terms of the above metrics and score</li>
</ul>
<h2>Abstract</h2>
<p>Instance segmentation of neurons in volumetric light microscopy images of nervous systems enables groundbreaking research in neuroscience by facilitating joint functional and morphological analyses of neural circuits at cellular resolution. Yet said multi-neuron light microscopy data exhibits extremely challenging properties for the task of instance segmentation: Individual neurons have long-ranging, thin filamentous and widely branching morphologies, multiple neurons are tightly inter-weaved, and partial volume effects, uneven illumination and noise inherent to light microscopy severely impede local disentangling as well as long-range tracing of individual neurons. These properties reflect a current key challenge in machine learning research, namely to effectively capture long-range dependencies in the data. While respective methodological research is buzzing, to date methods are typically benchmarked on synthetic datasets. To address this gap, we release the FlyLight Instance Segmentation Benchmark (FISBe) dataset, the first publicly available multi-neuron light microscopy dataset with pixel-wise annotations. In addition, we define a set of instance segmentation metrics for benchmarking that we designed to be meaningful with regard to downstream analyses. Lastly, we provide three baselines to kick off a competition that we envision to both advance the field of machine learning regarding methodology for capturing long-range data dependencies, and facilitate scientific discovery in basic neuroscience.</p>
<h2>Dataset documentation:</h2>
<p>We provide a detailed documentation of our dataset, following the <a href="https://arxiv.org/abs/1803.09010" target="_blank" rel="noopener">Datasheet for Datasets</a> questionnaire:</p>
<p><em>>> <a href="https://kainmueller-lab.github.io/fisbe/datasheet" target="_blank" rel="noopener">FISBe Datasheet</a></em></p>
<p>Our dataset originates from the <a href="https://www.janelia.org/project-team/flylight" target="_blank" rel="noopener">FlyLight project</a>, where the authors released a large image collection of nervous systems of ~74,000 flies, <a href="https://gen1mcfo.janelia.org/cgi-bin/gen1mcfo.cgi" target="_blank" rel="noopener">available for download</a> under CC BY 4.0 license.</p>
<h2>Files</h2>
<ul>
<li>fisbe_v1.0_{completely,partly}.zip
<ul>
<li>contains the image and ground truth segmentation data; there is one <em>zarr</em> file per sample, see below for more information on how to access <em>zarr</em> files.</li>
</ul>
</li>
<li>fisbe_v1.0_mips.zip
<ul>
<li>maximum intensity projections of all samples, for convenience.</li>
</ul>
</li>
<li>sample_list_per_split.txt
<ul>
<li>a simple list of all samples and the subset they are in, for convenience.</li>
</ul>
</li>
<li>view_data.py
<ul>
<li>a simple python script to visualize samples, see below for more information on how to use it.</li>
</ul>
</li>
<li>dim_neurons_val_and_test_sets.json
<ul>
<li>a list of instance ids per sample that are considered to be of low intensity/dim; can be used for extended evaluation.</li>
</ul>
</li>
<li>Readme.md
<ul>
<li>general information</li>
</ul>
</li>
</ul>
<h2>How to work with the image files</h2>
<p>Each sample consists of a single 3d MCFO image of neurons of the fruit fly.<br>For each image, we provide a pixel-wise instance segmentation for all separable neurons.<br>Each sample is stored as a separate <em>zarr</em> file (<a href="https://zarr.readthedocs.io" target="_blank" rel="noopener">zarr</a> is a file storage format for chunked, compressed, N-dimensional arrays based on an open-source specification.").<br>The image data ("raw") and the segmentation ("gt_instances") are stored as two arrays within a single zarr file.<br>The segmentation mask for each neuron is stored in a separate channel.<br>The order of dimensions is CZYX.</p>
<p>We recommend to work in a virtual environment, e.g., by using conda:</p>
<p><code>conda create -y -n flylight-env -c conda-forge python=3.9</code><br><code>conda activate flylight-env</code></p>
<h3>How to open <em>zarr</em> files</h3>
<ol>
<li>Install the python zarr package:
<pre><code>pip install zarr</code></pre>
</li>
<li>Opened a zarr file with:<br>
<p><code>import zarr</code><br><code>raw = zarr.open(<path_to_zarr>, mode='r', path="volumes/raw")</code><br><code>seg = zarr.open(<path_to_zarr>, mode='r', path="volumes/gt_instances")</code></p>
<p><code># optional:</code><br><code>import numpy as np</code><br><code>raw_np = np.array(raw)</code></p>
</li>
</ol>
<p>Zarr arrays are read lazily on-demand.<br>Many functions that expect numpy arrays also work with zarr arrays.<br>Optionally, the arrays can also explicitly be converted to numpy arrays.</p>
<h3>How to view <em>zarr</em> image files</h3>
<p>We recommend to use <a href="https://napari.org" target="_blank" rel="noopener">napari</a> to view the image data.</p>
<ol>
<li>Install napari:
<pre><code>pip install "napari[all]"</code></pre>
</li>
<li>Save the following Python script: <br>
<p><code>import zarr, sys, napari</code></p>
<p><code>raw = zarr.load(sys.argv[1], mode='r', path="volumes/raw")</code><br><code>gts = zarr.load(sys.argv[1], mode='r', path="volumes/gt_instances")</code></p>
<p><code>viewer = napari.Viewer(ndisplay=3)</code><br><code>for idx, gt in enumerate(gts):</code><br><code> viewer.add_labels(</code><br><code> gt, rendering='translucent', blending='additive', name=f'gt_{idx}')</code><br><code>viewer.add_image(raw[0], colormap="red", name='raw_r', blending='additive')</code><br><code>viewer.add_image(raw[1], colormap="green", name='raw_g', blending='additive')</code><br><code>viewer.add_image(raw[2], colormap="blue", name='raw_b', blending='additive')</code><br><code>napari.run()</code></p>
</li>
<li>Execute:
<pre><code>python view_data.py <path-to-file>/R9F03-20181030_62_B5.zarr</code></pre>
</li>
</ol>
<h2>Metrics</h2>
<ul>
<li>S: Average of avF1 and C</li>
<li>avF1: Average F1 Score</li>
<li>C: Average ground truth coverage</li>
<li>clDice_TP: Average true positives clDice</li>
<li>FS: Number of false splits</li>
<li>FM: Number of false merges</li>
<li>tp: Relative number of true positives</li>
</ul>
<p>For more information on our selected metrics and formal definitions please see <a href="https://arxiv.org/abs/2404.00130" target="_blank" rel="noopener">our paper</a>.</p>
<h2>Baseline</h2>
<p>To showcase the FISBe dataset together with our selection of metrics, we provide evaluation results for three baseline methods, namely <a href="https://github.com/Kainmueller-Lab/PatchPerPix" target="_blank" rel="noopener">PatchPerPix (ppp)</a>, <a href="https://github.com/google/ffn" target="_blank" rel="noopener">Flood Filling Networks (FFN)</a> and a non-learnt application-specific <a href="https://www.biorxiv.org/content/10.1101/2020.06.07.138941v1" target="_blank" rel="noopener">color clustering from Duan et al.</a>.<br>For detailed information on the methods and the quantitative results please see <a href="https://arxiv.org/abs/2404.00130" target="_blank" rel="noopener">our paper</a>.</p>
<h2>License</h2>
<p>The FlyLight Instance Segmentation Benchmark (FISBe) dataset is licensed under the <a href="https://creativecommons.org/licenses/by/4.0" target="_blank" rel="noopener">Creative Commons Attribution 4.0 International (CC BY 4.0) license</a>.</p>
<h2>Citation</h2>
<p>If you use <em>FISBe</em> in your research, please use the following BibTeX entry: </p>
<pre><code>@misc{mais2024fisbe,
title = {FISBe: A real-world benchmark dataset for instance
segmentation of long-range thin filamentous structures},
author = {Lisa Mais and Peter Hirsch and Claire Managan and Ramya
Kandarpa and Josef Lorenz Rumberger and Annika Reinke and Lena
Maier-Hein and Gudrun Ihrke and Dagmar Kainmueller},
year = 2024,
eprint = {2404.00130},
archivePrefix ={arXiv},
primaryClass = {cs.CV}
}</code></pre>
<h2>Acknowledgments</h2>
<p>We thank Aljoscha Nern for providing unpublished MCFO images as well as Geoffrey W. Meissner and the entire FlyLight Project Team for valuable<br>discussions.<br>P.H., L.M. and D.K. were supported by the HHMI Janelia Visiting Scientist Program.<br>This work was co-funded by Helmholtz Imaging.</p>
<h2>Changelog</h2>
<p>There have been no changes to the dataset so far.<br>All future change will be listed <a href="https://kainmueller-lab.github.io/fisbe/changelog" target="_blank" rel="noopener">on the changelog page</a>.</p>
<h2>Contributing</h2>
<p>If you would like to contribute, have encountered any issues or have any suggestions, please <a href="https://github.com/Kainmueller-Lab/fisbe/issues" target="_blank" rel="noopener">open an issue</a> for the FISBe dataset in the accompanying github repository.</p>
<p>All contributions are welcome!</p>
Author response
Endoplasmic Reticulum (ER)-derived COPII coated vesicles constitutively transport secretory cargo to the Golgi. However, during starvation-induced stress, COPII vesicles have been implicated as a membrane source for autophagosomes, distinct organelles that engulf cellular components for degradation by macroautophagy (hereafter called autophagy). How cells regulate core trafficking machinery to fulfill dramatically different cellular roles in response to environmental cues is unknown. Here we show that phosphorylation of conserved amino acids on the membrane-distal surface of the Saccharomyces cerevisiae COPII cargo adaptor, Sec24, reprograms COPII vesicles for autophagy. We also show casein kinase 1 (Hrr25) is a key kinase that phosphorylates this regulatory surface. During autophagy, Sec24 phosphorylation regulates autophagosome number and its interaction with the C-terminus of Atg9, a component of the autophagy machinery required for autophagosome initiation. We propose that the acute need to produce autophagosomes during starvation drives the interaction of Sec24 with Atg9 to increase autophagosome abundance
Evaluation of the Central Effects of Systemic Lentiviral-Mediated Leptin Delivery in Streptozotocin-Induced Diabetic Rats
Type 1 diabetes (T1D) is characterized by hyperphagia, hyperglycemia and activation of the hypothalamic–pituitary–adrenal (HPA) axis. We have reported previously that daily leptin injections help to alleviate these symptoms. Therefore, we hypothesized that leptin gene therapy could help to normalize the neuroendocrine dysfunction seen in T1D. Adult male Sprague Dawley rats were injected i.v. with a lentiviral vector containing the leptin gene or green fluorescent protein. Ten days later, they were injected with the vehicle or streptozotocin (STZ). HPA function was assessed by measuring norepinephrine (NE) levels in the paraventricular nucleus (PVN) and serum corticosterone (CS). Treatment with the leptin lentiviral vector (Lepvv) increased leptin and insulin levels in non-diabetic rats, but not in diabetic animals. There was a significant reduction in blood glucose levels in diabetic rats due to Lepvv treatment. Both NE levels in the PVN and serum CS were reduced in diabetic rats treated with Lepvv. Results from this study provide evidence that leptin gene therapy in STZ-induced diabetic rats was able to partially normalize some of the neuroendocrine abnormalities, but studies with higher doses of the Lepvv are needed to develop this into a viable option for treating T1D
Evaluation of Fatigue Damage and Healing Capability of RAP Mixtures Using Time Lag: An ITSM Test Parameter
Time lag, extracted from the results of the indirect tensile stiffness modulus (ITSM) test, which is a routine test conducted by many organizations to evaluate the stiffness value of asphalt mixes, has been demonstrated in the past to represent the visco-elastic nature of asphalt mixes. It is also widely known that phase angle influences the energy dissipation and the visco-elastic nature of binders and mixes and consequently the fatigue damage and healing. Time lag has been used as a surrogate measure of phase angle in this investigation to correlate with fatigue life and healing indices of Reclaimed Asphalt Pavement (RAP) mixes. While the healing behaviour of conventional asphalt mixes (without RAP) has been studied extensively in the past, fatigue healing characteristics of RAP mixes is less investigated. Time lag values were obtained from the results of ITSM test conducted at test temperatures of 15, 25, and 35 °C on asphalt mixes containing different proportions (0, 15, 25, 35, and 45%) of RAP material. Indirect tensile fatigue test (ITFT) was conducted on the RAP mixtures at 25 °C. The binder blends were evaluated by conducting a linear amplitude sweep (LAS) fatigue test, Fourier Transform Infrared (FTIR) Spectroscopy, measurement of total surface free energy (SFE) using a goniometer, viscosity at 60 °C and phase angle at 25 °C. Strong correlation was observed between (a) time lag and fatigue life values of RAP mixes and (b) time lag and the healing potential of mixes. Good to fair correlations were also noted between different rheological parameters (viscosity and phase angle), chemical indices (ICO, ISO, ICC, and ICH) obtained from FTIR and SFE of the binders. The results from this investigation can be used to estimate the relative fatigue performance and healing characteristics of different asphalt mixes. © 2022, The Author(s), under exclusive licence to Chinese Society of Pavement Engineering
THE VISBLE SPECTRUM OF TITANIUM DIOXIDE
Author Institution: Department of Chemistry and Biochemistry, Arizona State University, Tempe,AZ 85287; Department of Chemistry, University of Basel, Basel SwitzerlandBulk TiO is a widely used photo-activated catalytic material, yet poorly understood. Much of the motivation for studies of molecular TiO is the observation {\textbf{129}} 3022, 2007.} that there is a smooth correlation of the molecular electronic states to the band gap of the bulk. The field-free energy levels of the ground state of the monomer have been fully characterized by microwave spectroscopy. {\textbf{676}} 1367, 2008.} Here we report on the visible spectrum in the region between 18200 cm to 18750 cm of a cold molecular beam sample of TiO using laser induced fluorescence detection and mass-selected REMPI. Bands at 18240 cm, 18411 cm and 18470 cm were recorded at a resolution of 40 MHz and rotationally analyzed. The dispersed fluorescence of 18411 cm and 18470 cm bands were analyzed to produce a set of vibrational parameters for the ground state. The optical Stark spectra of the 18411 cm and 18470 cm bands were recorded and analyzed to determine permanent electric dipole moments and compared with the results for the band at 18655 cm {\textbf{11}} 2649, 2008.
Clinical profile and outcome of H1N1 influenza in children during August 2016 to January 2017 at KIMS hospital in Bangalore, Karnataka, India
Background: Influenza virus is a common respiratory pathogen. In April 2009, a new strain of Influenza virus A H1N1 was evolved and spread in several countries around the world and caused pandemic. After that the resurgence of H1N1 epidemic occurs almost every year and it has caused significant morbidity and mortality. Author present the clinical profile of suspected cases of swine flu infection among children attending our hospital.Methods: This prospective study was conducted at KIMS hospital among 70 children aged 1month to 17 yrs admitted with pneumonia from August 2016 to January 2017 and who consented for the study were included. Institutional ethical clearance obtained. All cases were classified according to WHO ABC category and PRESS (Pediatric Respiratory Severity Score) was applied. Outcome of patients were calculated based on requirement for PICU care, ventilation and PRESS score 4-5. Suspected high risk cases, category B2, and category C cases were started on antiviral Oseltamivir and throat swabs were sent for detection of H1N1 by rRT-PCR.Results: Out of 70 pneumonia cases 44 cases improved with antibiotics and supportive therapy, 26 cases who belonged to category B2 and C and PRESS score 4-5 (severe) were screened for H1N1 influenza and 26 cases were started with empirical antiviral drug oseltamivir.10 out of 26 cases (38.4%) were positive for H1N1 influenza. In our study, fever, cough, breathlessness, and chest x-ray abnormalities were the most common clinical features in both suspected and confirmed cases of H1N1 influenza. Out of 10 cases 2 succumbed (20%). Both the cases had prolonged hospital stay.Conclusions: During monsoon, high degree of suspicion is required in patients presenting with fever, cough, cold and hurried breathing with supportive lab investigations and early administration of antiviral drug provides better outcome, reduces the length of hospital stay and mortality.</jats:p
Correlating the differences in the receptor binding domain of SARS-CoV-2 spike variants on their interactions with human ACE2 receptor
Abstract Spike glycoprotein of SARS-CoV-2 variants plays a critical role in infection and transmission through its interaction with human angiotensin converting enzyme 2 (hACE2) receptors. Prior findings using molecular docking and biomolecular studies reported varied findings on the difference in the interactions among the spike variants with the hACE2 receptors. Hence, it is a prerequisite to understand these interactions in a more precise manner. To this end, firstly, we performed ELISA with trimeric spike glycoproteins of SARS-CoV-2 variants including Wuhan Hu-1(Wild), Delta, C.1.2 and Omicron. Further, to study the interactions in a more specific manner by mimicking the natural infection, we developed hACE2 receptors expressing HEK-293T cell line, evaluated their binding efficiencies and competitive binding of spike variants with D614G spike pseudotyped virus. In line with the existing findings, we observed that Omicron had higher binding efficiency compared to Delta in both ELISA and Cellular models. Intriguingly, we found that cellular models could differentiate the subtle differences between the closely related C.1.2 and Delta in their binding to hACE2 receptors. Our study using the cellular model provides a precise method to evaluate the binding interactions between spike sub-lineages to hACE2 receptors
Recommended from our members
Systems biology of breast cancer
Breast cancer, with an alarming incidence rate throughout the globe, has attracted significant investigations to identify disease specific biomarkers. Among these, oestrogen receptor (ER) occupies a central role where overexpression is a prognostic indication for breast cancer. The cross-talk between the responsible contenders of ER-associated genes potentially play an important role in the disease aetiology. Investigation of such cross talk is the focus of this thesis. The development of high throughput technologies such as expression microarrays has paved the way for investigating thousands of genes at a time. Microarrays with their high data volume, multivariate nature and non-linearity pose challenges for analysing using conventional statistical approaches. To combat these challenges, computational researchers have developed machine learning approaches such as Artificial Neural Networks (ANNs). This thesis evaluates ANNs based methodologies and their application to the analysis of microarray data generated for breast cancer cases of differing oestrogen receptor status. Furthermore they are used for network inferencing to identify interactions between ER-associated markers and for the subsequent identification of putative pathway elements. The present thesis shows that it is possible to identify some ER-associated breast cancer relevant markers using ANNs. These have been subsequently validated on clinical breast tumour samples highlighting the promise of this approach
Author Correction: Single-nucleus analysis of accessible chromatin in developing mouse forebrain reveals cell-type-specific transcriptional regulation
Author Correction: Single-nucleus analysis of accessible chromatin in developing mouse forebrain reveals cell-type-specific transcriptional regulation
Analysis of chromatin accessibility can reveal transcriptional regulatory sequences, but heterogeneity of primary tissues poses a significant challenge in mapping the precise chromatin landscape in specific cell types. Here we report single-nucleus ATAC-seq, a combinatorial barcoding-assisted single-cell assay for transposase-accessible chromatin that is optimized for use on flash-frozen primary tissue samples. We apply this technique to the mouse forebrain through eight developmental stages. Through analysis of more than 15,000 nuclei, we identify 20 distinct cell populations corresponding to major neuronal and non-neuronal cell types. We further define cell-type-specific transcriptional regulatory sequences, infer potential master transcriptional regulators and delineate developmental changes in forebrain cellular composition. Our results provide insight into the molecular and cellular dynamics that underlie forebrain development in the mouse and establish technical and analytical frameworks that are broadly applicable to other heterogeneous tissues
