Skip to main content

Griottes: a generalist tool for network generation from segmented tissue images

Abstract

Background

Microscopy techniques and image segmentation algorithms have improved dramatically this decade, leading to an ever increasing amount of biological images and a greater reliance on imaging to investigate biological questions. This has created a need for methods to extract the relevant information on the behaviors of cells and their interactions, while reducing the amount of computing power required to organize this information.

Results

This task can be performed by using a network representation in which the cells and their properties are encoded in the nodes, while the neighborhood interactions are encoded by the links. Here, we introduce Griottes, an open-source tool to build the “network twin” of 2D and 3D tissues from segmented microscopy images. We show how the library can provide a wide range of biologically relevant metrics on individual cells and their neighborhoods, with the objective of providing multi-scale biological insights. The library’s capacities are demonstrated on different image and data types.

Conclusions

This library is provided as an open-source tool that can be integrated into common image analysis workflows to increase their capacities.

Background

The effect of the cellular heterogeneity on the spatial organization and function of biological tissues is emerging as a major paradigm to understand complex collective behaviors. This is the case for example in the study of how spatial structure leads to the emergence of germ layers during embryonic development [1] or in describing the tumor heterogeneity in cancer [2,3,4,5]. Indeed modern in vitro models such as organ-on-a-chip devices [6] or organoids [7] capture complex biological phenomena by integrating several cell types that follow a precise spatial patterning. These models reinforce the view that interactions between cells are fundamental in determining many properties of the tissues. In particular they show how the mechanical and biochemical interactions between neighboring cells determine many global biological properties across many spatial scales [4].

In this context fluorescence microscopy has emerged as an invaluable tool to generate large and high-resolution images of two-dimensional (2D) or three-dimensional (3D) tissues. These images have a typical resolution below one micron, with several fluorescence channels being acquired in parallel, often on several planes. As a result it is now common to generate thousands or more multi-channel images that represent a trove of data on the tissues being imaged (see, e.g., Ref. [8]). This trend is amplifying, with the increase in performance of microscopes, cameras, and fluorophores, such as, e.g., the new CODEX technology [2, 9] that makes it possible to simultaneously image close to 60 markers in tissues. These advances in image acquisition have led to a need for analysis methods to extract biologically relevant information from these images, namely at the scale of the individual cells. Such methods need to preserve information about the cell types, their positions, and their biological function, while reducing the size and complexity that make the original images difficult to treat.

Geometric networks constitute a natural representation of spatially encoded information that can be used to describe the structure and interactions in biological tissues. The network representation has already been used in a range of settings, ranging from city structure and railways [10] to flows in the pulmonary airway tree [11]. In contrast with protein interaction networks that are common in biology, geometric networks preserve the spatial information of the sample while encoding the properties of the individual objects. This makes them well-suited for describing the structure and interactions between cells and to bridge the scales from the individual cell to the tissue. More fundamentally, representing tissues as networks is advantageous as it is possible to draw from a vast literature in statistical physics, mathematics and computer science to analyze the structure and quantify the relationships between the cells composing the tissue [12].

Here we describe Griottes, an open-source tool to construct a network representation from imaging data. The routine creates a “network twin” of the imaged sample by extracting individual cell information from segmented images and building a network representation of the tissue. This new object makes it easier to address quantitative questions on complex tissues with single-cell precision. Below we begin by describing the code and its functions, followed by a few examples on how biologically relevant information can be obtained from typical images.

Implementation

A network is a set of objects that are related to each other. Each object is described by a node, which can have several attributes, and the nodes are connected by edges or links that represent the relationship between them. The network is represented by a graph that shows these objects as nodes and their relationships as links. In Griottes we choose to represent each cell by a node that is placed on its geometric center in 2D or 3D. The links in the network represent neighborhood, either through contact or through distance, as described below. Different attributes (cell type, cell size, etc.) can be assigned to the nodes, while the links can contain information about the distance between cells or the length of the common border, as summarized in Table 1.

Table 1 List of attributes and their definitions as currently available in Griottes

Griottes takes as an input segmented tissue images and builds the graph to represent them. The input to Griottes can consist of data tables, as well as labeled images of nuclei and/or cytoplasms. The inputs can be 2D or 3D, without any impact on the program and a single line of code is enough to generate the graph representation of the tissue.

Program architecture

The Griottes analysis pipeline contains two main steps: individual cell attribute measurements step and then the network construction step. These processes and the program inputs and outputs, described in Fig. 1, are elaborated immediately below.

Fig. 1
figure 1

Schematic representation of the Griottes workflow: the program takes multiple data formats as input to generate a graph in a single command. The red boxes contain objects, the green boxes processes

Input

Griottes takes as input the output of standard cell segmentation codes. This can be in either as a labeled image (2D or 3D) or as a data table. The labeled image has at least one channel composed of a zero-padded matrix in which the area occupied by each cell is filled with an integer label that is unique to this cell. A data table containing single cell information can also be used as an input (for supplementary details on the input formatting we refer the reader to the program documentation).

Individual attribute measurements

If the input is an image containing segmented cells, Griottes can extract their essential geometric properties such as their size, shape and position in the image (see Table 1). In case the input image also contains supplementary fluorescence channels, then the individual fluorescence intensities of the different cells can be extracted too. The data are returned to the user, giving access to the statistics of every single cell composing the tissue.

Network construction

From the individual cell properties, Griottes builds a spatial graph where each node can be populated with cell attributes defined by the user. The construction methods are elaborated below.

Output

The returned object is a graph where the previously measured properties are entered as node attributes, each node in the network mapping to a given cell in the tissue. The object is currently returned as a NetworkX graph [13].

Post-processing

After the network image of the tissue has been generated with Griottes, it can be further analyzed downstream using tailor-made programs depending on the biological question to be addressed. Example applications include spatial clustering algorithms, such as hidden Markov random fields (HMRF), or graph neural networks (GNNs) to investigate the neighborhood influence on biological properties such as cell division [14]. Once the network image has been generated, it is possible to harness the diverse graph analysis methods to extract relevant information from the experimental data (Fig. 1).

Analysis pipeline

Extracting single-cell information from the image

The input image has to contain at least a labeled image that contains the information on the segmented cells. This allows the conversion of pixel-based information on the different cell types to the node-based representation of the tissue. In the following paragraphs we summarize the different features that can be extracted using Griottes.

Geometric property measurements

The geometric properties can be of particular interest as it is known that cell morphology can be a significant feature of tissues and their characterization can shed light on morphogenesis or mechanical constraints within the tissue [15]. To be able to readily include the morphological information as a feature of the cells in the network, we added an option to measure the geometric properties of the cell masks in Griottes. This includes extracting the mask volume, eccentricity and orientation in space.

Fluorescence measurements

If the input image contains supplementary channels containing the fluorescence information, Griottes can measure the mean fluorescence levels inside each cell mask and attribute this number to the cell. This allows for downstream cell classification (is the cell of type A or B?), or phenotype information (what is this cell’s production of molecule C?). The method is particularly reliable when the cell masks are built from the membranes and the full volume of the cell is recovered. If only the nucleus is stained, then only the information from the pixels inside the nucleus mask is taken into account.

Building the network

Once the information on the cell properties is extracted from the image, Griottes constructs the connectivity graph binding neighboring cells together (Fig. 1). Several options are implemented by the program for determining the connectivity between two cells.

The first method uses geometric graph construction. A geometric graph is generated by connecting cells separated by less than a given distance [10]. This connection method can be particularly relevant when cell-cell communication is mediated by chemical cues [16], in which case the distance between cells determines the time necessary for diffusion to take place. However, this construction rule is less pertinent if cell-cell interactions are contact mediated.

The second method is a Delaunay-triangulation based connection condition (Fig. 2b). This is a robust state-of-the-art heuristic widely used to build biologically relevant networks in many different contexts [16,17,18]. The Delaunay triangulation provides a good estimate of the cell-cell connectivity in the cases when the membranes are not available or cannot be identified in the image data. However, care must be taken when analyzing such results, since this method is known to not perfectly replicate tissue morphology in 2D [19]. In order to avoid incoherent links generated by the Delaunay procedure, the connections between cells beyond a cutoff distance are removed from the network.

Fig. 2
figure 2

a Confocal dorsal view of the zebrafish adult pallium. Glial fibrillary acidic protein (GFAP) in green, Proliferating cell nuclear antigen (PCNA) in magenta and Zonula occludens-1 (ZO1) in white or blue. ZO1 is highlighting the apical domain of the cells allowing the identification of their apical area. Inset: spotlight on a limited tissue area, the ZO1 membrane staining allows for the exact localization of cell membranes. Scale bar is 100 μm. Griottes incorporates different network construction methods. The contact-based method connects cells sharing a common membrane, the Delaunay and Geometric graphs are commonly used graph-generation methods. c The graphs generated from a same set of nodes with different construction rules have different properties. For instance, the degree distribution of a Geometric graph is broader than that of the Contact and Delaunay graph. d Mean PCNA signal within the cells in the example tissue. Cells with an average intensity above 6500 (red line) are considered PCNA+, the other cells are PCNA−. e Thresholding intensity signals converts a network populated with continuous fluorescence signals to a network populated with categorical cell types. f. Representation of the example network (panel b) where node colors represent cell type. Left: the network is projected on the ZO1 signal. Right: the network is projected on the PCNA signal. This method reliably incorporates cell type information into the network representation of the tissue. g Left: connected cells can have widely varying contact surfaces. Right: this information can be encoded into the network by weighting the links between cells. Two differing cell-cell interfaces (pink lines) have different link weights in the network representation of the tissue (pink arrows). h The connection between cells can be quantified at scale: the histogram of link weights in the tissue shown in panel a

In contrast with the above cell-center based methods, if the segmentation recovers masks of the complete cells, it is also possible to construct a graph that accounts for direct contact between the cells. This method relies on the interfaces between the different cells (Fig. 2b), linking cells that share a common membrane. With this method it is possible to provide values to the edges as a function of the shared membrane surface, as described in Table 1. This feature can be transposed in the graph object output by weighting the edges that link two nodes (Fig. 2g).

Results

The method and interest in using network description of tissues is clearer when the library is applied to specific cases. Below we provide some illustrations of the implementation of Griottes on three types of inputs: 2D and 3D images as well as a data table. These examples also correspond to different biological samples: the adult zebrafish pallium and mesenchymal stem cell spheroids. Each example showcases a different use case for the program.

Zebrafish telencephalon 2D image

Deciphering the generation of neural stem cells (NSCs) in the adult zebrafish brain requires a deeper understanding of the connections between individual cells in the tissue. High-quality in vivo images have recently been obtained by Dray et al. [20], as shown in Fig. 2a. This image consists of a projected 3D stack of whole-mount immunostained pallium from 3 months post-fertilization zebrafish. Visualization of GFAP (glial fibrillary acidic) expression allows the identification of the neural stem cells, while PCNA (proliferating cell nuclear antigen) highlights dividing cells and ZO1 (Zonula Occludens 1) shows the apical domain of the cells. These cells have been shown to coordinate their behavior in part via local cell-cell interactions (see Ref.[20] for details).

The image shown in Fig. 2a is first segmented using Cellpose [21], which yields a multi-channel 2D image containing the masks resulting from the cell segmentation and the fluorescence image in the GFAP and PCNA channels. This image is then analyzed using Griottes to generate a network representation of the tissue, as shown in Fig. 2b. Different network construction methods generate different graphs. This feature is illustrated in Fig. 2b, where a graph is constructed for a sub-section of the tissue using the contact, the Delaunay and the geometric construction rules. For the geometric and Delaunay graphs, the maximum cell-cell distance authorized is 15 μm, to avoid generating spurious connections between cells. While the Delaunay and contact graphs give broadly similar structure, the geometric graph shows clear differences in neighborhood, due to the heterogeneous sizes of the cells and their arrangements. The differences in graph structure can be measured quantitatively, e.g., by observing the degree distribution (number of links per cell) as a function of the network construction method. The distribution of degrees in the geometric graph is much broader than in the contact of Delaunay graphs (Fig. 2c).

From the input image, Griottes can also extract the fluorescence in the PCNA channel of the individual cells in the tissue. The distribution of fluorescence intensities is shown in Fig. 2d. A threshold value is then selected manually in order to classify cells with a higher intensity as cell type PCNA+ and those below as cell type PCNA− (Fig. 2e). This binary classification now allows us to set the cell type as an attribute for each node and construct the network representation of the tissue (Fig. 2f). We verify that the brightest cells in the PCNA channel are indeed classified as PCNA+ (Fig. 2f).

In images where the whole cells are segmented, as is the case here, it is possible to include the individual cell-cell contact surfaces in the network representation of the tissue. Indeed, cells can have different shapes leading to a high heterogeneity of cell contact surfaces within the tissue (Fig. 2g). Cell-cell contact can be pertinent to understand tissue behavior, since both chemical and mechanical signals are transmitted through membrane contacts. Extracting properties of these contact surfaces can shed light on key biological processes such as notch signaling [22]. Griottes allows easy retrieval of the contact length between all pairs of neighboring cells. The size of the contacts can be represented visually for each link (Fig. 2g) and the quantitative distribution of these values can be obtained (Fig. 2h) for downstream analysis.

Analysis of 3D spheroid images

The network representation can also be applied to 3D cultures, in the form of spheroids or organoids. These model systems recapitulate many aspects of the in vivo tissue structure, as shown, e.g., by comparing cryo-sections of organs with organoids [7, 23]. In these tissue models, the structural organization in 3D was shown to couple back on the functional behavior of the cells within the organoid. This was quantitatively shown in the case of mesenchymal stromal cells (MSCs), which were found to organize in a hierarchical manner, depending on their level of commitment, and to express different levels of chemokines depending on their position in the organoid [24, 25]. Previous analysis however was limited to coarse-grained quantities on averaged 2D images [26, 27]. This can now be overcome by imaging the organoids using a light-sheet microscope, which provides very good resolution over the complete depth of the organoid. Some representative slices of the 3D reconstruction are shown in Fig. 3a.

Fig. 3
figure 3

a Sections of a MSC spheroid imaged with a light-sheet microscope. The technique allows in-depth imaging of tissue structures. Scale bar is 50 μm. b 3D network representation of a MSC spheroid. Different cell types are identified based upon CD146 fluorescence measurements. c Comparison between the degree distribution of an example spheroid (panel b, bars) and the batch distribution (N = 5, red line). d Comparison between the link-length distribution of an example spheroid (bars) and the batch distribution (red line). e The network representation makes it possible to identify cells on the outer layer of the spheroid (red) from the inner cells (blue). We can “peel off” the outer layers successively, revealing the inner structure and composition of the spheroid. f Cell degree as a function of the layer number, the average degree is larger for the layers near the center of the spheroid. Blue dots show one example spheroid and red dashed line represents average over the experimental batch. g Distance between cell centers (in μm) as a function of the layer number. Blue dots show one example spheroid and red dashed line represents average over the experimental batch

The MSC spheroids, with CD146 and DNA staining (see the “Methods” section for the full protocol), were imaged in 3D thereby providing access to the cell nuclei and to the distribution of CD146-expressing cells. The images were then segmented using Cellpose [21] and fed into Griottes in order to generate the 3D network representation of the organoid for further analysis. Since only the nuclei were available in these images, the Delaunay construction method was used to estimate the 3D graph, as shown in Fig. 3b. For illustration purposes, the cells here are classified depending on the CD146 expression with the same methodology as in the section for zebrafish, above.

This network representation allows us to retrieve the distribution of number of neighbors (degree) for each cell within the tissue. By repeating the measurement on = 5 spheroids, the distribution of degrees is found to be well-described by a normal distribution, centered at 〈k〉=11.4±3.2 neighbors per cell (Fig. 3c). Other properties, such as the distribution of distances between every two neighbors within the samples, can readily be obtained as well (Fig. 3d). In the MSC spheroids, cells are on average separated by 〈l〉=23±2.4 μm (Fig. 3d).

It is also possible to assign a layer number to each of the cells in the network and to analyze the cells based on their distance from the edge or center of the organoid. This allows us to virtually peel off the cells composing the outer layers of the spheroid or to treat each layer individually (Fig. 3e). Analysis of the average degree of cells composing each layer, see Fig. 3f, shows an increase from an average of 〈k0〉=8.0±2.4 neighbors per cell in the outer layer (layer 0) to 〈k6〉=13.3±2.9 neighbors in the inner layers (layer 6 in this case). In contrast to the increase in the number of neighbors as a function of the layer, the cell-cell distance remains stable across the spheroid depth. Indeed, the mean distance, defined by length from one nuclei barycenter to another, varies between 〈l3〉=22.6±2.3 μm and 〈l0〉=23.8±2.6 μm (Fig. 3g). In the future, the layer analysis framework could be combined with categorical information on the cells, such as their phenotype, to assess the formation of the spheroids and organoids in greater detail.

Building a network from a data table

Image processing software can often yield cell information in a table format containing the cell positions as well as other attributes such as the cell type. The data table can contain the positions of the cells in the xy plane, as well as further information about the cells, such as their cell type. Below we show how such data can be integrated and analyzed using Griottes. In the current example a region of interest of the zebrafish telencephalon was segmented and analyzed [20], attributing a cell type to each of the visible cells in the sample. Understanding cellular organization and cell-cell relationships of this tissue will be critical to better understand how this stem cell population coordinates its behavior to sustain large-scale and long term homeostasis.

The cell positions can serve to place them on a two-dimensional scatter plot where the different cell phenotypes are indicated by different colors (Fig. 4a). Griottes is then used to build the network representation of the tissue, here using the Delaunay triangulation to connect cells to each other (Fig. 4b).

Fig. 4
figure 4

a Reconstruction of the zebrafish telencephalon from a data table. Colors represent the different cell types entered in the table by the user. b Network construction with Griottes from a point-cloud using the Delaunay construction rule. c Degree distribution of cells composing the zebrafish telencephalon after the network construction using the Delaunay rule. d Composition of the zebrafish telencephalon: a vast majority of the cells are GFAP+/PCNA−. e From the network representation of the tissue we can extract clusters of any given cell type (left). Distribution of PCNA+ cluster sizes for clusters of two cells or more (right). f Percentage of cells that belong to a cluster of their cell type of size larger than 2. All GFAP+/PCNA− cells are connected and belong to the same cluster. Conversely, a majority of GFAP+/PCNA− and GFAP+/PCNA+ cells aren’t connected to any other cell of the same type

The telencephalon is structured in a quasi-2D structure, the cells spreading out and forming a sheet. Analysis of the degree distribution of the cells in the tissue (Fig. 4c) shows a similar distribution to that recovered from the cell membranes in Fig. 2c. The tissue contains multiple cell-types necessary for maintaining the tissue homeostasis (Fig. 4d) [20]. A key question to understand the extrusion of cells from the zebrafish telencephalon is the spatial organization of cell phenotypes within the tissue. One method is to study the distribution and properties of clusters of cells of similar phenotype, i.e., a group of cells of the same cell type that are connected to each other. Such clusters can be identified by analyzing the network (Fig. 4e), which makes it possible to compute the proportion of cells of each type that belong to clusters of size larger than 1 (Fig. 4f). We can look at the distribution of cell clusters within the tissue to determine the statistical properties of the organization of the tissue (Fig. 4e).

Looking at the proportion of clusters strictly larger than 1, we see differences depending on the cell types. GFAP+/PCNA− cells, which compose 73% of the tissue, all belong to the same cluster. On the other hand, despite differing presence within the tissue, GFAP+/PCNA+ and GFAP−/PCNA+ cells have a similar chance of belonging to a cluster. Using the network representation makes it possible to investigate experimental data in a new light, whilst highlighting the cell-cell interactions within the samples.

Discussion

Here we introduce Griottes, an open source, generalist algorithm that can generate the network representation of segmented images. The routine accepts a wide range of inputs: 2D and 3D images, mono-channel or multi-channel, as well as data tables. It is designed to be agnostic of the segmentation method used to pre-process the images.

By generating a graph representation of the input image, Griottes enables the use of a wide range of analysis tools, some of which are illustrated in the current paper. These include properties such as cell positions, geometry, fluorescence intensity levels, and contact surfaces with other cells in the tissue. The network representation then allows the geometric or phenotypic markers to be related among neighboring cells in order to understand the interactions that emerge.

The network representation of tissues condenses information contained in images. Instead of representing the system at the pixel-level, it summarizes the image at the single cell level, drastically reducing the memory uptake and increasing the information density. This analysis framework is particularly relevant when focusing on individual interactions between cells in the system and that these interactions are determined by the spatial properties of the tissue. Later developments will include information about the extra-cellular matrix or external constraints, which are simple to add to the network description.

Conclusion

Griottes is part of a growing ecosystem of image-analysis tools enabling the spatial analysis of biological images [3, 17, 28, 29]. The library is built in Python and uses state of the art open-source libraries, allowing investigators to seamlessly integrate Griottes in their image and data analysis workflows. A Napari plugin is also available, thus providing a graphical user interface. We expect to continue developing Griottes, with the long-term goal to make the step from pixel-based to node-based analysis as seamless as possible.

Code and data availability

Methods

MSC spheroid preparation

Human Mesenchymal stem cells (hMSCs) derived from the Wharton’s jelly of the umbilical cord [American Type Culture Collection (ATCC) PCS-500-010, LGC, Molsheim, France] were obtained at passage 2. The cells were maintained as previously described [24]. To isolate the CD146dim and CD146bright subpopulations, hMSCs (at passage 5) were recovered from the flasks using TrypLE. Then, the cells were incubated with a staining solution containing a 1:100 mouse anti-human CD146-Alexa Fluor 647 antibody (BD Biosciences) diluted in 1% FBS, for 30 min. 25% of the brightest and 25% of the dimmest CD146 stained cells were isolated by flow cytometry using a FACSAria III (BD Biosciences). The isolated CD146dim cells were then labeled with VybrantTMDiO, while the CD146bright cells were stained with VybrantTMDIL, for 30 min at 37 °C, as previously described [24]. After PBS washing, 6 × 106 of a mix of 50:50 CD146dim and CD146bright sorted-hMSCs/mL were seeded together into a 384-well plate, which were each filled with 50 μL culture medium containing 1 μM SiR-DNA (Spirochrome), and the cells were let to form spheroids for 24 h. The spheroids were then fixed using a 4% paraformaldehyde (PFA) solution (Alpha Aesar) for 30 min, and, after PBS washing, the aggregates were mounted into an agarose gel (Sigma) for 3D imaging.

Imaging

Light sheet imaging has been performed using a commercial version of the Dual Inverted Single Plane Imaging Microscope (DiSPIM) [30] (Marianas -3i-). This system consists in two identical arms fitted with illumination and detection apparatus for light sheet generation and its subsequent imaging.

Despite its ability to acquire the same volume on two different angles with 90° rotation, spheroid samples were acquired using only a single side acquisition. This provided acceptable signal to noise ratio for adequate segmentation and spared the time consuming dual view reconstruction.

The used objective was a water immersion 40× objective with 0.8 numerical aperture. This provides a resolution of 0.162 um/pixel on the fitted camera (Hamamatsu Orca Flash 4.0). Fast single plane acquisition was performed by objective translation via a piezo-electric element over a 150-μm by 0.5-μm increment. This provided a final cubic volume of 248 × 248 × 150 μm of the acquired spheroid.

In order to excite the labeled samples, each plane was excited with 100 ms (Camera exposure time) sequential illumination of three discrete wavelengths: 488, 561, and 640 nm corresponding to GFP, RFP, and Sir-DNA, respectively. Chromatic fluorescence selection is done via a set of quad-band filters and dichroics (Semrock DA/FI/TR/Cy5-4X-B) on the CMOS Camera.

Availability of data and materials

Griottes is an open-source Python package available in the following GitHub repository: https://github.com/BaroudLab/Griottes.

All data are available in the accompanying GitHub release https://github.com/BaroudLab/Griottes/releases/tag/v1.0-alpha. Zebrafish data are drawn from Dray et al. [20].

A Napari plugin for Griottes is also available at the following link: https://github.com/BaroudLab/napari-griottes

Abbreviations

3D:

Three-dimensional

DAPI:

4′,6-Diamidino-2-phenylindole

GFP:

Green fluorescence protein

RFP:

Red fluorescent protein

GFAP:

Glial fibrillary acidic protein

PCNA:

Proliferating cell nuclear antigen

ZO1:

Zonula occludens-1

MSC:

Mesenchymal stem cell

References

  1. Warmflash A, Sorre B, Etoc F, Siggia ED, Brivanlou AH. A method to recapitulate early embryonic spatial patterning in human embryonic stem cells. Nat Meth. 2014; 11(8):847–854.

    Article  CAS  Google Scholar 

  2. Schürch CM, Bhate SS, Barlow GL, Phillips DJ, Noti L, Zlobec I, et al. Coordinated cellular neighborhoods orchestrate antitumoral immunity at the colorectal cancer invasive front. Cell. 2020; 182(5):1341–1359.

    Article  Google Scholar 

  3. Stoltzfus CR, Filipek J, Gern BH, Olin BE, Leal JM, Wu Y, et al. CytoMAP: A spatial analysis toolbox reveals features of myeloid cell organization in lymphoid tissues. Cell Rep. 2020;31(3):107523.

  4. Binnewies M, Roberts EW, Kersten K, Chan V, Fearon DF, Merad M, et al. Understanding the tumor immune microenvironment (TIME) for effective therapy. Nat Med. 2018; 24(5):541–550.

    Article  CAS  Google Scholar 

  5. Jackson HW, Fischer JR, Zanotelli VRT, Ali HR, Mechera R, Soysal SD, et al. The single-cell pathology landscape of breast cancer. Nature. 2020; 578(7796):615–620.

    Article  CAS  Google Scholar 

  6. Bhatia SN, Ingber DE. Microfluidic organs-on-chips. Nat Biotechnol. 2014; 32(8):760–772.

    Article  CAS  Google Scholar 

  7. Clevers H. Modeling development and disease with organoids. Cell. 2016; 165(7):1586–1597.

    Article  CAS  Google Scholar 

  8. Andilla J, Jorand R, Olarte OE, Dufour AC, Cazales M, Montagner YLE, et al. Imaging tissue-mimic with light sheet microscopy: A comparative guideline. Sci. 2017; 7(October 2016):1–14.

    Google Scholar 

  9. Goltsev Y, Samusik N, Kennedy-Darling J, Bhate S, Hale M, Vazquez G, et al. Deep profiling of mouse splenic architecture with CODEX multiplexed imaging. Cell. 2018; 174(4):968–981.

    Article  CAS  Google Scholar 

  10. Barthélemy M. Spatial networks. Phys Rep. 2011; 499(1-3):1–101.

    Article  Google Scholar 

  11. Venegas JG, Winkler T, Musch G, Vidal Melo MF, Layfield D, Tgavalekos N, et al. Self-organized patchiness in asthma as a prelude to catastrophic shifts. Nature. 2005; 434(7034):777–782.

    Article  CAS  Google Scholar 

  12. Grosser S, Lippoldt J, Oswald L, Merkel M, Sussman DM, Renner F, et al. Cell and nucleus shape as an indicator of tissue fluidity in carcinoma. Phys Rev X. 2021; 11(1):011033.

    CAS  Google Scholar 

  13. Hagberg A, Swart P, Chult DS. Exploring network structure, dynamics, and function using networkx. 2008:1.

  14. Yamamoto T, Cockburn K, Greco V, Kawaguchi K. Graph-based machine learning reveals rules of spatiotemporal cell interactions in tissues. bioRxiv. 2021. 2021.06.23.449559.

  15. Dolega ME, Delarue M, Ingremeau F, Prost J, Delon A, Cappello G. Cell-like pressure sensors reveal increase of mechanical stress towards the core of multicellular spheroids under compression. Nat Com. 2017;8(1):1-9.

  16. Rose F, Rappez L, Triana SH, Alexandrov T, Genovesio A. PySpacell: A Python Package for Spatial Analysis of Cell Images. Cytometry A. 2020; 97(3):288–295.

    Article  Google Scholar 

  17. Coullomb A, Pancaldi V. Tysserand - Fast reconstruction of spatial networks from bioimages. Bioinformatics. 2020.

  18. Miller BF, Bambah-Mukku D, Dulac C, Zhuang X, Fan J. Characterizing spatial gene expression heterogeneity in spatially resolved single-cell transcriptomic data with nonuniform cellular densities. Genome Res. 2021; 31(10):1843–1855.

    Article  Google Scholar 

  19. Kaliman S, Jayachandran C, Rehfeldt F, Smith AS. Limits of applicability of the voronoi tessellation determined by centers of cell nuclei to epithelium morphology. Front Physiol. 2016;7:551.

  20. Dray N, Mancini L, Binshtok U, Cheysson F, Supatto W, Mahou P, et al. Dynamic spatiotemporal coordination of neural stem cell fate decisions occurs through local feedback in the adult vertebrate brain. Cell Stem Cell. 2021; 28(8):1457–1472.

    Article  CAS  Google Scholar 

  21. Stringer C, Wang T, Michaelos M, Pachitariu M. Cellpose: a generalist algorithm for cellular segmentation. Nat Methods. 2021; 18(1):100–106.

    Article  CAS  Google Scholar 

  22. Shaya O, Binshtok U, Hersch M, Rivkin D, Weinreb S, Amir-Zilberstein L, et al. Cell-Cell Contact Area Affects Notch Signaling and Notch-Dependent Patterning. Dev Cell. 2017; 40(5):505–511.

    Article  CAS  Google Scholar 

  23. Lancaster MA, Renner M, Martin CA, Wenzel D, Bicknell LS, Hurles ME, et al. Cerebral organoids model human brain development and microcephaly. Nature. 2013; 501(7467):373–379.

    Article  CAS  Google Scholar 

  24. Sart S, Tomasi RFX, Barizien A, Amselem G, Cumano A, Baroud CN. Mapping the structure and biological functions within mesenchymal bodies using microfluidics. Sci Adv. 2020;6(10):eaaw7853.

  25. Saint-Sardos A, Sart S, Lippera K, Brient-Litzler E, Michelin S, Amselem G, et al. High-Throughput Measurements of Intra-Cellular and Secreted Cytokine from Single Spheroids Using Anchored Microfluidic Droplets. Small. 2020; 16(49):2002303.

    Article  CAS  Google Scholar 

  26. Sart S, Tomasi RFX, Amselem G, Baroud CN. Multiscale cytometry and regulation of 3D cell cultures on a chip. Nat Com. 2017; 8(1):469.

    Article  Google Scholar 

  27. Tomasi RFX, Sart S, Champetier T, Baroud CN. Individual Control and Quantification of 3D Spheroids in a High-Density Microfluidic Droplet Array. Cell Rep. 2020;31(8):107670.

  28. Palla G, Spitzer H, Klein M, Fischer D, Christina Schaar A, Benedikt Kuemmerle L, et al. Squidpy: a scalable framework for spatial single cell analysis. bioRxiv. 2021. 2021.02.19.431994.

  29. Wolf FA, Angerer P, Theis FJ. SCANPY: large-scale single-cell gene expression data analysis. Genome Biol. 2018; 19(1):15.

    Article  Google Scholar 

  30. Kumar A, Wu Y, Christensen R, Chandris P, Gandler W, McCreedy E, et al. Dual-view plane illumination microscopy for rapid and spatially isotropic imaging. Nat Protoc. 2014; 9(11):2555–2573.

    Article  CAS  Google Scholar 

Download references

Acknowledgments

The authors thank Nicolas Dray and Laure Bally-Cuif for access to the zebrafish images and useful discussions.

Funding

The UtechS Photonic BioImaging (Imagopole), Center for technological ressources and research (C2RT), Institut Pasteur, supported by the French National Research Agency (France BioImaging; ANR-10–INBS–04; Investments for the Future). We thank the support of the Inception program (Investissement d’Avenir grant ANR-16-CONV-0005). The DiSPIM microscope system benefited from financial support provided by the Region Ile de France via the DIM Elicit program. We also acknowledge the cytometry and biomarkers platform (CB-Utechs) for use of the cell sorters. GR. was supported by the Direction générale de l’Armement.

Author information

Authors and Affiliations

Authors

Contributions

GR and CNB initiated the project. GR wrote the code with contributions from VB and JS. AA developed the Napari version and contributed to the main. SS performed the 3D cell culture and staining. EE acquired the light-sheet microscope images. CNB supervised the project. GR and CNB wrote the manuscript with comments from other authors. All authors read and approved the final manuscript.

Corresponding author

Correspondence to Charles N. Baroud.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have no competing interests.

Additional information

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Ronteix, G., Aristov, A., Bonnet, V. et al. Griottes: a generalist tool for network generation from segmented tissue images. BMC Biol 20, 178 (2022). https://doi.org/10.1186/s12915-022-01376-2

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12915-022-01376-2

Keywords