Skip to main content
NIHPA Author Manuscripts logoLink to NIHPA Author Manuscripts
. Author manuscript; available in PMC: 2022 Oct 31.
Published in final edited form as: Med Image Comput Comput Assist Interv. 2022 Sep 15;13431:231–240. doi: 10.1007/978-3-031-16431-6_22

Joint Graph Convolution for Analyzing Brain Structural and Functional Connectome

Yueting Li 1, Qingyue Wei 1, Ehsan Adeli 1, Kilian M Pohl 1,2, Qingyu Zhao 1
PMCID: PMC9620868  NIHMSID: NIHMS1843256  PMID: 36321855

Abstract

The white-matter (micro-)structural architecture of the brain promotes synchrony among neuronal populations, giving rise to richly patterned functional connections. A fundamental problem for systems neuroscience is determining the best way to relate structural and functional networks quantified by diffusion tensor imaging and resting-state functional MRI. As one of the state-of-the-art approaches for network analysis, graph convolutional networks (GCN) have been separately used to analyze functional and structural networks, but have not been applied to explore inter-network relationships. In this work, we propose to couple the two networks of an individual by adding inter-network edges between corresponding brain regions, so that the joint structure-function graph can be directly analyzed by a single GCN. The weights of inter-network edges are learnable, reflecting non-uniform structure-function coupling strength across the brain. We apply our Joint-GCN to predict age and sex of 662 participants from the public dataset of the National Consortium on Alcohol and Neurodevelopment in Adolescence (NCANDA) based on their functional and micro-structural white-matter networks. Our results support that the proposed Joint-GCN outperforms existing multi-modal graph learning approaches for analyzing structural and functional networks.

1. Introduction

The “human connectom” refers to the concept of describing the brain’s structural and functional organization as large-scale complex brain networks [19]. An accurate description of such connectome heavily relies on neuroimaging methods. Specifically, Diffusion Tensor Imaging (DTI) characterizes white-matter fiber bundles connecting different gray-matter regions (Structural Connectivity or SC), while resting-state functional Magnetic Resonance Imaging (rs-fMRI) measures spontaneous fluctuations in BOLD signal giving rise to the Functional Connectivity (FC) across brain regions [11]. Central to the connectome research is understanding how the underlying SC supports FC for developing high-order cognitive abilities [6] and how the structure-function relationship develops over certain ages and differs between sexes [1].

To answer these questions, an emerging approach is using SC and FC of the brain to predict factors of interest, such as age, sex, and diagnosis labels [10,18]. Since brain networks can be treated as graphs, one of the most popular architectures for building such prediction models is Graph Convolution Networks (GCN) [7]. However, the majority of GCN-based studies on brain connectivity focus on a single imaging modality [4,5,9] but fall short in leveraging the relationship between FC and SC. Existing works that perform multi-modal fusion [21] either use two GCNs to extract features from SC and FC graphs separately [23] or directly discard the graph structure from one modality (e.g., regarding FC as features defined on the SC graph) [10]. These simple fusion methods ignore the inter-network dependency that white-matter fiber tracts provide an anatomic foundation for high-level brain function, thereby possibly leading to sub-optimal feature extraction from the SC-FC profile.

To address this issue, we propose coupling the SC and FC graphs by inserting inter-network edges between corresponding brain regions. The resulting joint graph then models the entire structural and functional connectome that can be analyzed by a single GCN. Given prior evidence that the structure-function relationships markedly vary across the neocortex [16], we propose learning the weights (quantifying the coupling strength of SC and FC patterns for each region) of the inter-network edges during the end-to-end training. We tested our proposal, called Joint-GCN, on the public data collected by the National Consortium on Alcohol and Neurodevelopment in Adolescence (NCANDA) [2]. By predicting age and sex of the participants from SC matrices (extracted from DTI) and FC matrices (extracted from rs-fMRI), our joint graph has a higher prediction accuracy than unimodal analysis (based on either SC or FC networks alone) and than existing multi-modal approaches that disjoint the SC and FC graphs. The learned weights of inter-network edges highlight the non-uniform coupling strength between SC and FC over the human cortex.

2. Method

We first review the traditional graph convolution defined on a single network (SC or FC). We then describe the construction of the joint SC-FC network and model the SC-FC coupling as learnable weights of inter-network edges. Figure 1 provides an overview of the proposed Joint-GCN.

Fig. 1.

Fig. 1.

Proposed joint-GCN method: structural and functional graphs are extracted from DTI and rs-fMRI scans respectively. The two networks are then joined via inter-network edges, whose edge weights are learnable parameters. The adjacency matrix of the joint SC-FC graph is then analyzed by a single graph convolutional network.

Graph Convolution for Individual Graphs.

We assume a brain is parcellated into N regions of interest (ROIs), so that a tractography procedure (using a DTI scan) quantifies the strength of the SC between all pairs of ROIs. This SC network is characterized by a graph 𝒢S(𝒱S, ℰS) with 𝒱S being the node set (N ROIs) and ℰS being the edge set. Edge weights between ROI pairs are encoded by an adjacency matrix ASN×N. Let XSN×M be M-dimensional node features defined for the N ROIs, and A^S=D12ASD12 be the normalized adjacency matrix, where D is the degree matrix with Dii=jAijS. A typical graph convolution f is

f(XS;AS)=σ(A^SXSWS), (1)

where σ(·) is a non-linear activation function and WS is the convolutional weights to be learned.

On the other hand, we quantify the strength of FC between a pair of ROIs by correlating their BOLD signals recorded in the rs-fMRI scan. As such, the FC network is characterized by another graph 𝒢F (𝒱F, ℰF), and the corresponding graph convolution is defined with respect to the normalized FC adjacency matrix being A^F. Note, 𝒱S and 𝒱F represent the same set of ROIs, whereas A^S and A^F are generally different, reflecting the divergence between SC and FC patterns. Given the SC and FC graphs of a subject, our goal is to use a GCN model to predict the target label (e.g., age or diagnosis) of the subject.

Joint SC-FC Graph.

Instead of using separate GCNs to analyze the two graphs, we merge 𝒢S and 𝒢F into a joint graph 𝒢 = {𝒱, ℰ} encoding the entire SC-FC connectome profile. The joint node set 𝒱 = {𝒱S, 𝒱F} has a size of 2N, i.e., the duplication of the N ROIs. We then add N inter-network edges ℰC to connect corresponding nodes in 𝒱S and 𝒱F. The joint edge set is the combination of ℰ = {ℰS, ℰF, ℰC} (Fig. 1). Using this combination, the SC and FC profiles associated with the same brain region are coupled together so that the joint SC-FC graph is analyzed by a single GCN.

Learnable SC-FC Coupling Strength.

Recent studies suggest the strength of SC-FC coupling is not uniform across the brain but exhibits variation in parallel to certain cortical hierarchies [1,16]. To support this hypothesis, we set the weights of the N inter-network edges to be learnable parameters. Let c={c1,,cN} be a row vector encoding the coupling strength of ℰC with each ci ∈ [0, 1]. We then construct the joint 2N × 2N normalized adjacency matrix of the SC-FC joint graph as (Fig. 1)

A^=[A^Sdiag(c)diag(c)A^F], (2)

where diag(·) denotes the diagonalization of a vector. Let X=[XSXF] denote the vertical concatenation between structural and functional node features. The graph convolution for the joint graph is defined by

f(X,A)=σ(A^XW)=σ([A^SXS+cXFA^FXF+cXS]W). (3)

where W defines the convolution weights for the joint graph and ⊗ is element-wise multiplication. Equation 3 suggests that through our joint graph convolution, the functional information encoded in XF is propagated into the structural network through ℰC and the amount of propagation aligns with the SC-FC coupling strength encoded in c. Vice versa, structural features can also propagate into the functional network through the convolution.

Joint-GCN.

To embed the learnable c into the end-to-end network, we construct a “dummy” network that contains a single fully connected layer applied to a dummy input scalar. With a sigmoid activation, the N-dimensional output of the dummy network is then viewed as c and enters the diagonal entries in the off-diagonal blocks of the joint normalized adjacency matrix. We simply use the sum of the node degree and centrality within the SC and FC networks as node features, which are then fed into a standard GCN with the aforementioned adjacency matrix. The GCN contains one layer of graph convolution with input dimension 80 and output dimension 40 followed by SELU [8] activation, mean pooling, batch-normalization, and two fully connected layers with dimension 1600 and 128 respectively (Fig. 1).

3. Experimental Settings

Using machine learning approaches to predict age and sex of youths based on their neuroimaging data is becoming a popular approach for understanding the dynamic neurodevelopment and the emerging sexual differences during adolescence. We illustrate the potential of Joint-GCN for these prediction tasks based on the brain connectome data provided by the NCANDA study [2].

Data.

We used longitudinal rs-fMRI and DTI data from 662 NCANDA participants (328 males and 334 females), who were 12 to 21 years old at their baseline visits and were scanned annually for up to 7 years. Data were acquired on GE and Siemens scanners. Scanner type did not significantly (p >0.05) correlate with age (two-sample t-test) and sex (Fisher’s exact test). For each participant, we selected visits where the participant had no-to-low alcohol intake over the past year according to the Cahalan scale [25]. This selection simultaneously resulted in 1976 pairs of rs-fMRI and DTI scans (3 visits per participant on average).

Preprocessing.

rs-fMRI data were preprocessed using the publicly available NCANDA pipeline [24], which consists of motion correction, outlier-detection, detrending, physiological noise removal, and both temporal (low pass frequency: 0.1, high pass frequency: 0.01) and spatial smoothing. We then computed the mean BOLD signal within 80 cortical regions by first aligning the mean BOLD image to the subject-specific T1-weighted MRI and then non-rigidly registering the T1 MRI to the SRI24 atlas [17]. Finally, an 80 × 80 FC connectivity matrix was constructed as the Fisher-transformed Pearson correlation of the BOLD signal between pairwise ROIs. Negative connectivities were set to zero to remove potentially artificial anti-correlation introduced in the rsfMRI preprocessing [20].

The public NCANDA DTI preprocessing pipeline included skull stripping, bad single shots removal, and both echo-planar and Eddy-current distortion correction [25]. The whole-brain boundary of gray-matter white-matter was extracted by the procedure described in [1] and was then parcellated into the same set of 80 ROIs defined in the rs-fMRI preprocessing procedure. Probabilistic tractography was performed by FSL bedpostx and FSL probtrackx, which initiated 10,000 streamlines from each boundary ROI. Finally, each entry in the 80 × 80 SC connectivity matrix recorded the log of the number of probabilistic streamlines connecting a pair of brain regions.

Model Implementation.

We implemented Joint-GCN in Pytorch 1.10 and trained the model using the SGD optimizer for 1000 epochs with a batch size of 64. We used mean squared error as the training loss for age prediction and the binary cross-entropy as the loss for sex prediction after applying a sigmoid activation to the network output. We used a learning rate of 0.01 in the sex prediction task and 0.001 in age prediction. To mitigate differences in the input data associated with the scanner type, a binary variable encoding the scanner type was concatenated with learned features before the last fully connected layer.

Evaluation.

We evaluated our proposed Joint-GCN model on the 1976 pairs of DTI and rs-fMRI by running 5-fold cross-validation for 10 times. The five folds were divided on the subject level to ensure data of each subject belonged to the same fold. Although our approach can be extended to a longitudinal setting, we focused on a cross-sectional analysis so the across-visit dependency within an individual was not considered. For sex experiments, we chose the classification accuracy (ACC) and Area under the ROC Curve (AUC) scores as evaluation metrics. For age prediction, we evaluated the Mean Absolute Error (MAE) and the Pearson’s Correlation Coefficient (PCC) between predicted and ground truth ages. Average and standard deviation of these metrics over the 10 cross-validation runs were reported. Lastly, we derived the coupling strength of the 80 ROIs for either prediction task by averaging the learned c over the five folds and then averaging the corresponding two regions across left and right hemispheres.

Baselines.

To examine the effectiveness of the our Joint-GCN model, we first compared it with single-modality models that only analyzed one type of network (either FC or SC). In this setting, we chose GCN, Multi Layer Perceptron (MLP), and Support Vector Machine (SVM) as the baselines. The MLP was a 2-layer network with 20 hidden units making predictions based on node features. The SVM used either FC or SC adjacency matrices as input features. Next, we compared our model with several existing multi-modal GCN approaches that took both SC and FC networks as inputs. We first implemented a multi-modal version of MLP, which concatenated outputs from the two modality-specific MLPs before entering another fully connected layer of dimension 40. The second approach [3] used a Matrix Auto-Encoder (Matrix-AE) to map FC to SC resulting in a low dimensional manifold embedding that can be used for classification. The third approach [22], UBNfs, used a multi-kernel method to fuse FC and SC to produce a unified brain network and used a standard SVM for classification. Next, we implemented Multi-View GCN (MV-GCN) proposed in [23], which applied two separate GCNs to extract features from SC and FC networks and then used the merged feature for the final prediction. Lastly, we tested SCP-GCN [10] (using their code) that defined adjacency matrix with respect to the SC graph and treated the FC matrix as node features. To align with our Joint-GCN implementation, scanner type was concatenated to the features before the final prediction in all baselines.

4. Results

Predictions by Joint-GCN.

Based on 10 runs of 5-fold cross validation, Joint-GCN resulted in an average of 84.9% accuracy for sex classification and an MAE of 1.95 years for age prediction. Figure 2(a)(b) shows the predicted values of the NCANDA participants by our model. We observe that the predicted age non-linearly correlated with ground truth; that is, our model could only successfully stratify the age differences at younger ages. Notably, the MAE for the younger cohort (MAE = 1.86, age < 18 years) was significantly lower (p < 0.01, two-sample t-test) than that for the older cohort (MAE = 2.12, age ≥ 18 years). This result comports with adolescent neurodevelopment being more pronounced in the younger age but generally slows upon early adulthood [15]. The cubic fitting between predicted age and ground truth in Fig. 2(a) was also inline with the “inverted U-shape” of the developmental trajectory of functional and structural connectome during adolescence [25].

Fig. 2.

Fig. 2.

Predicted values of (a) age and (b) sex for the NCANDA participants by Joint-GCN; (c) The ROI-specific weights quantifying the coupling strength between SC-FC learned in the sex prediction task significantly correlated with the weights learned for age prediction (p < 0.01, Pearson’s r); (d) The learned coupling strength displayed on the brain cortex.

Comparison with Baselines.

Table 1 shows the accuracy of sex classification and age prediction for all the comparison methods. GCN-based (including ours) approaches generally resulted in higher accuracy than the others (i.e. MLP and SVM). The higher accuracy of GCN-based methods shows the efficacy of graph convolution in extracting informative features from network data. Compared to the single GCN applied to FC alone and SC alone, multi-view GCN and our Joint-GCN resulted in more accurate sex classification as well as higher PCC in age prediction. This phenomenon indicates SC and FC networks contain complementary information about the brain connectome that is useful for identifying sex and age differences. Notably, if we modeled the coupling by adding inter-network edges between every pair of ROIs (instead of using ROI-specific edges), the prediction accuracy was significantly lowered (sex ACC: 77%, age PCC: 0.34). Lastly, our proposed Joint-GCN resulted in the highest scores in three metrics and the second best in MAE. The improvement in PCC over the second best approach (MV-GCN) was statistically significant (p < 0.01, two-sample t-test), and so was the improvement in ACC for sex prediction (p = 0.015, McNemar’s test).

Table 1.

Accuracy of all comparison models trained on single modality or multi-modal brain connectome for predicting sex or age labels of the NCANDA participants. Results were averaged across the 5 folds for 10 times of random dataset splits. Highest accuracy is typeset in bold.

Modality Method Sex classification Age prediction
ACC (%) ↑ AUC ↑ MAE ↓ PCC ↑
FC MLP 60.0 ± 0.1 0.612 ± 0.016 2.03 ± 0.006 0.117 ± 0.018
GCN [7] 80.9 ± 0.6 0.870 ± 0.007 2.08 ± 0.023 0.316 ± 0.018
SVM 76.2 ± 0.6 0.838 ± 0.005 2.72 ± 0.042 0.230 ± 0.015
SC MLP 57.8 ± 2.0 0.598 ± 0.032 2.03 ± 0.005 0.154 ± 0.009
GCN [7] 78.4 ± 0.6 0.838 ± 0.009 1.98 ± 0.026 0.315 ± 0.015
SVM 74.1 ± 1.0 0.816 ± 0.010 2.11 ± 0.027 0.316 ± 0.016
Multi-modal MLP 61.9 ± 1.5 0.647 ± 0.018 2.03 ± 0.007 0.145 ± 0.014
Matrix-AE [3] 68.8 ± 3.4 0.772 ± 0.031 2.09 ± 0.036 0.246 ± 0.019
UBNfs [22] 80.4 ± 0.5 0.884 ± 0.003 1.93 ± 0.009 0.304 ± 0.009
SCP-GCN [10] 70.8 ± 0.7 0.759 ± 0.011 1.96 ± 0.023 0.303 ± 0.014
MV-GCN [23] 83.1 ± 0.7 0.893 ± 0.005 2.03 ± 0.034 0.351 ± 0.017
Joint-GCN(Ours) 84.9 ± 0.6 0.907 ± 0.005 1.95 ± 0.006 0.386 ± 0.008

Learned SC-FC Coupling Strength.

Figure 2(d) displays the coupling strength of the 40 bilateral brain regions learned in the age and sex prediction tasks. We observe that learned coupling strength highly coincided between the two prediction tasks despite the training of the two models being independent. This indicates our learning framework can extract intrinsic SC-FC relationships in the adolescent brain, which contributes to the identification of age and sex differences. Supported by prior studies [1,16], the learned coupling strength was not uniform across the neocortex but varied from 0.35 to 0.65 (0.5 ± 0.05). The top 3 regions with the strongest SC-FC coupling are the superior and the inferior parietal lobe and superior frontal lobe. The lowest coupling strength was measured for the rolandic operculum, olfactory cortex, and frontal inferior operculum. As recent findings have identified macroscopic spatial gradients as the primary organizing principle of brain networks [1,16], we computed the principal gradient of functional connectivity for each ROI [16]. These gradients negatively correlated with the learned coupling strength on a trend level (p = 0.075) with unimodal regions generally having stronger and transmodal regions weaker coupling strength. We hypothesize that the trend-level correlation would become more pronounced once we replace our 80-ROI parcellation with a finer one as in [1,16]. Nevertheless, the above result points to the potential of Joint-GCN in learning useful structural-functional properties of the brain.

5. Conclusion and Future Work

In this paper, we proposed a novel framework, called Joint-GCN, for analyzing brain connectome quantified by multi-modal neuroimaging data from DTI and rs-fMRI. Extending prior studies on applying GCN to structural and functional graphs, our work underscored the importance of modeling the coupling between structural and functional connectivity for prediction tasks based on brain connectome. Based on the adolescent neuroimaging dataset provided by NCANDA, we showed the potential of our framework to accurately characterize the protracted development of structural and functional brain connectivity and the emerging sex differences during youth. One limitation of our study is that we did not focus on modeling the across-visit relationships within the longitudinal data of NCANDA participants (an orthogonal research direction). Rather, we only considered network metrics (degree and centrality) as node features to focus on exploring the model’s capability in analyzing network topology. Nevertheless, our model presents a useful data-driven approach to model the complex hierarchical neural systems that have broad relevance for healthy aging and abnormalities associated with neuropsychological diseases.

Acknowledgment.

This research was supported in part by NIH U24 AA021697, K99 AA028840, and Stanford HAI GCP Credit. The data were part of the public NCANDA data releases NCANDA_PUBLIC_6Y_REDCAP_V04 [13], NCANDA_PUBLIC_6Y_DIFFUSION_V01 [12], and NCANDA_PUBLIC_6Y_RESTINGSTATE_V01 [14], whose collection and distribution were supported by NIH funding AA021697, AA021695, AA021692, AA021696, AA021681, AA021690, and AA02169.

References

  • 1.Baum G, et al. : Development of structure-function coupling in human brain networks during youth. Proc. Natl. Acad. Sci 117(1), 771–778 (2019) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 2.Brown S, et al. : The national consortium on alcohol and NeuroDevelopment in Adolescence (NCANDA): a multisite study of adolescent development and substance use. J. Stud. Alcohol Drugs 76(6), 895–908 (2015) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 3.D’Souza N, et al. : A matrix autoencoder framework to align the functional and structural connectivity manifolds as guided by behavioral phenotypes, 12907, 625–636 (2021) [Google Scholar]
  • 4.Gadgil S, Zhao Q, Pfefferbaum A, Sullivan EV, Adeli E, Pohl KM: Spatiotemporal graph convolution for resting-state fMRI analysis. In: Martel AL, et al. (eds.) MICCAI 2020. LNCS, vol. 12267, pp. 528–538. Springer, Cham: (2020). 10.1007/978-3-030-59728_352 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 5.Hanik M, Demirtaş MA, Gharsallaoui MA, Rekik I: Predicting cognitive scores with graph neural networks through sample selection learning. Brain Imaging Behav. 16, 1–16 (2021) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 6.Jung J, Cloutman L, Binney R, Ralph M: The structural connectivity of higher order association cortices reflects human functional brain networks. Cortex 97, 221–239 (2016) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7.Kipf TN, Welling M: Semi-supervised classification with graph convolutional networks. arXiv preprint arXiv:1609.02907 (2016) [Google Scholar]
  • 8.Klambauer G, Unterthiner T, Mayr A, Hochreiter S: Self-normalizing neural networks. In: Advances in Neural Information Processing Systems, vol. 30 (2017) [Google Scholar]
  • 9.Li X, et al. : BrainGNN: interpretable brain graph neural network for fMRI analysis. Med. Image Anal 74, 1–13 (2021) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 10.Liu J, Ma G, Jiang F, Lu CT, Yu P, Ragin A: Community-preserving graph convolutions for structural and functional joint embedding of brain networks. In: International Conference on Big Data (Big Data), pp. 1163–1168, November 2019 [Google Scholar]
  • 11.Moody J, Adluru N, Alexander A, Field A: The connectomes: methods of white matter tractography and contributions of resting state fMRI. Semin. Ultrasound CT and MRI 42(5), 507–522 (2021) [DOI] [PubMed] [Google Scholar]
  • 12.Pohl KM, et al. : The ‘NCANDA_PUBLIC_6Y_DIFFUSION_V01’ data release of the national consortium on alcohol and neurodevelopment in adolescence (NCANDA). Sage Bionetworks Synapse; (2022). 10.7303/syn27226988 [DOI] [Google Scholar]
  • 13.Pohl KM, et al. : The ‘NCANDA_PUBLIC_6Y_REDCAP_V04’ data release of the national consortium on alcohol and neurodevelopment in adolescence (NCANDA). Sage Bionetworks Synapse; (2022). 10.7303/syn26951066 [DOI] [Google Scholar]
  • 14.Pohl KM, et al. : The ‘NCANDA_PUBLIC_6Y_RESTINGSTATE_V01’ data release of the national consortium on alcohol and neurodevelopment in adolescence (NCANDA). Sage Bionetworks Synapse; (2022). 10.7303/syn32303917 [DOI] [Google Scholar]
  • 15.Pujol J, Vendrell P, Junqué C, Martí-Vilalta JL, Capdevila A: When does human brain development end? Evidence of corpus callosum growth up to adulthood. Ann. Neurol. Off. J. Am. Neurol. Assoc. Child Neurol. Soc 34(1), 71–75 (1993) [DOI] [PubMed] [Google Scholar]
  • 16.Rodriguez-Vazquez B, et al. : Gradients of structure-function tethering across neocortex. PNAS 116(42), 21219–21227 (2019) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 17.Rohlfing T, Zahr N, Sullivan E, Pfefferbaum A: The SRI24 multichannel atlas of normal adult human brain structure. Hum. Brain Mapp 31(5), 798–819 (2009) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 18.Song TA, et al. : Graph convolutional neural networks for Alzheimer’s disease classification. In: IEEE International Symposium on Biomedical Imaging, vol. 2019, pp. 414–417, April 2019 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 19.Sporns O, Tononi G, Kötter R: The human connectome: a structural description of the human brain. PLoS Comput. Biol 1(4), 245–251 (2005) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 20.Weissenbacher A, Kasess C, Gerstl F, Lanzenberger R, Moser E, Windischberger C: Correlations and anticorrelations in resting-state functional connectivity MRI: a quantitative comparison of preprocessing strategies. Neuroimage 47(4), 1408–1416 (2009) [DOI] [PubMed] [Google Scholar]
  • 21.Yalcin A, Rekik I: A diagnostic unified classification model for classifying multi-sized and multi-modal brain graphs using graph alignment. J. Neurosci. Methods 348, 1–14 (2021) [DOI] [PubMed] [Google Scholar]
  • 22.Yang J, Zhu Q, Zhang R, Huang J, Zhang D: Unified brain network with functional and structural data, 12267, 114–123 (2020) [Google Scholar]
  • 23.Zhang X, He L, Chen K, Luo Y, Zhou J, Wang F: Multi-view graph convolutional network and its applications on neuroimage analysis for Parkinson’s disease. In: AMIA Annual Symposium Proceedings, vol. 2018, pp. 1147–1156. American Medical Informatics Association; (2018) [PMC free article] [PubMed] [Google Scholar]
  • 24.Zhao Q, et al. : Longitudinally consistent estimates of intrinsic functional networks. Hum. Brain Mapp 40(8), 2511–2528 (2019) [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 25.Zhao Q, et al. : Association of heavy drinking with deviant fiber tract development in frontal brain systems in adolescents. JAMA Psychiatry 78(4), 407–415 (2020) [DOI] [PMC free article] [PubMed] [Google Scholar]

RESOURCES