Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Graph theory analysis of brain MRI data

NotificationsYou must be signed in to change notification settings

cwatson/brainGraph

Repository files navigation

lifecycleProject Status: Active - The project has reached a stable, usable state and is being actively developed.Linux Build StatusCRAN_Status_BadgeDependenciesGPL LicenseCRAN DownloadsHitCount

brainGraph (RRID: SCR_017260) is anR package for performing graph theoryanalyses of brain MRI data. It is most useful in atlas-based analyses (e.g., using an atlas such asAAL,or one fromFreesurfer); however, many ofthe computations (e.g., theGLM-basedfunctions and the network-based statistic) will work with any graph thatis compatible withigraph. The package willperform analyses forstructural covariance networks (SCN), DTI tractography(I useprobtrackx2 fromFSL), andresting-state fMRI covariance (I have used the Matlab-basedDPABItoolbox).

Requirements

Operating Systems

The packageshould work "out-of-the-box" onLinux systems (at least on RedHat-based systems; i.e., CentOS, RHEL, Scientific Linux, etc.) since almost alldevelopment (and use, by me) has been on computers running CentOS 6 and (currently)CentOS 7. I have also had success running it (and did some development) onWindows 7, and have heard from users that it works on some versions of Mac OSand on Ubuntu. Please see the User Guide (mentioned below) for more details.

Multi-core processing

ManybrainGraph functions utilize multiple CPU cores. This is primarily donevia theforeachpackage. Depending on your OS, you will need to installdoMC (macOS andLinux)ordoSNOW(Windows).

Compatibility

Neuroimaging software

I mostly use Freesurfer and FSL, but the following software packages should be suitable.Note that this is an incomplete list; any software that can output a connectivity matrix will work.

Brain atlases

There are several brain atlases for which the data are present inbrainGraph.Atlases containing.scgm in the name contain both cortical andSubCortical Gray Matter (SCGM) regions.

  1. dk anddk.scgm:Desikan-Killiany
  2. dkt anddkt.scgm:Desikan-Killiany-Tourville
  3. destrieux anddestrieux.scgm:Destrieux
  4. aal90 andaal116:Automated Anatomical Labeling atlas
  5. aal2.94 andaal2.120:AAL-2
  6. brainsuite:Brainsuite
  7. craddock200:Craddock-200
  8. dosenbach160:Dosenbach-160
  9. hoa112:Harvard-Oxford atlas
  10. lpba40:LONI Probabilistic Brain Atlas
  11. hcp_mmp1.0:HCP-1mm
  12. power264:Power-264
  13. gordon333:Gordon-333
  14. brainnetome:Brainnetome

Other atlases

Some functions accept acustom.atlas argument, so that you can analyze data that is from an atlas not present inbrainGraph.Other atlases to be added in the future include the following (I would need specific coordinate, region name, and lobe and hemisphere information):

Installation

There are (primarily) two ways to install this package:

  1. Directly from CRAN: (use one of the following commands)
install.packages('brainGraph')install.packages('brainGraph',dependencies=TRUE)
  1. From the GitHub repo (for development versions). This requires that thedevtoolspackage be installed:
devtools::install_github('cwatson/brainGraph')

This should install all of the dependencies needed along with the packageitself. For more details, see theUser Guide (PDF link).

Multi-core processing

To set up your R session for parallel processing, you can use the following code. Note that it is different forWindows.This code should be run before any data processing. If you will always use a single OS, you can remove the unnecessary lines.

OS<-.Platform$OS.typeif (OS=='windows') {  library(snow)  library(doSNOW)num.cores<- as.numeric(Sys.getenv('NUMBER_OF_PROCESSORS'))cl<- makeCluster(num.cores,type='SOCK')  clusterExport(cl,'sim.rand.graph.par')# Or whatever functions you will use  registerDoSNOW(cl)}else {  library(doMC)  registerDoMC(detectCores()-1L)# Keep 1 core free}

For example, I source the following simple script before I do any parallel processing withbrainGraph:

pacman::p_load(brainGraph,doMC)registerDoMC(detectCores())

GUI

On some systems (e.g.,macOS andWindows) it might be difficult toinstall the necessary packages/dependencies for the GUI functions. Sincev2.2.0 (released 2018-05-28),the R packagesRGtk2andcairoDevicehave been changed toSuggests (i.e., they are no longer required),so it can be installed on a "headless" server.

If you are onmacOS orWindows and would like GUI functionality, please seethis GitHub Gist. The commentscontain more recent information.You may also need to install a few additional packages, shown here:

install.packages('gWidgets',dependencies=TRUE)install.packages('gWidgetsRGtk2',dependencies=TRUE)install.packages('RGtk2Extras',dependencies=TRUE)

Suggested packages

There are a few suggested packages that may be required for certain functions:

  • RGtk2 andcairoDevice: as mentioned above, these are required to use the GUI
  • boot: required forbrainGraph_boot
  • Hmisc: required forcorr.matrix
  • ade4: required forloo andaop
  • expm: required forcommunicability andcentr_betw_comm

Usage - the User Guide

I have a User Guide that containsextensive code examples for analyses common tobrain MRI studies. I also include some code for getting your datainto RfromFreesurfer, FSL, and DPABI, and some suggestions for workflow organization.

The User Guide is the most complete documentation of this package.If you are a beginner using R, I encourage you to read it thoroughly.You may start with thePrefaceor at whichever chapter is suitable for your analyses.

Major changes in v3.0.0

There are several major changes inv3.0.0. See the User Guide for more extensive details.

  • There are several fewer package dependencies, allowing for a quicker install process
  • There are a few new built-in atlases (see below for the full list)
  • Graph creation is simpler (in terms of code) with the newbrainGraphList object
  • The GLM-based functions are significantly faster and easily handle large models. The most significant speed improvements are seen inNBS andmtpc
  • There are more methods to calculate GLM-based statistics (including residuals, coefficient of determination, ANOVA, etc.)
  • There are global options that give the user some more control
  • There are other methods that make manipulating data objects easier/more flexible

To access the User Guide, a PDF is available atthis link.

Graph measures

In addition to the extensive list of measures available inigraph, I havefunctions for calculating/performing:

Group analyses

There are several analyses based on theGeneral Linear Model (GLM), and othersthat have different purposes.

GLM-based

  • Between-group differences in vertex- or graph-level measures (e.g.,degree,betweenness centrality,global efficiency, etc.) using the GLM's.SeeChapter 8 of the User Guide, which was partly modeled after theGLM page on theFSL wiki
  • Themulti-threshold permutation correction (MTPC) method for statisticalinference (seeDrakesmith et al., 2015andChapter 9 of the User Guide)
  • Thenetwork-based statistic (NBS) (seeZalesky et al., 2010andChapter 10 of the User Guide)
  • Graph- and vertex-levelmediation analysis (seeChapter 11of the User Guide, and themediation package in R)

Non-GLM based

  • Bootstrapping of graph-level metrics (e.g.,modularity)
  • Permutation analysis of between-group differences in vertex- or graph-level measures
  • "Individual contributions" (leave-one-out [LOO] andadd-one-patient [AOP];seeSaggar et al., 2015)

Null graph-related measures

Other measures

Visualization

There is a plotting GUI for fast and easy data exploration that willnot workwithout data from a standard atlas (ideally to be extended some time in the future).You may use a custom atlas if you follow the same format as the other atlases inthe package (seeChapter 4of theUser Guide for instructions).

brainGraph GUI

Getting Help

For bug reports, feature requests, help with usage/code/etc., please join theGoogle GroupbrainGraph-help.You may also consult the User Guide, and you canopen an issue here on GitHub.

Future versions

Anincomplete list of features/functionality I plan on adding to future versions:

  • Longitudinal modeling (withlinear mixed effects (LME) models)
  • Thresholding and graph creation using theminimum spanning tree as a base
  • Thresholding and graph creation for resting-state fMRI using a technique such as thegraphical lasso
  • Write functions to print group analysis results inxtable format forLaTeX documents

[8]ページ先頭

©2009-2025 Movatter.jp