Adolescent Brain Cognitive Development (ABCD) Study — Diffusion MRI Derivatives

The Adolescent Brain Cognitive Development℠ (ABCD) Study is the largest long-term study of brain development and child health in the United States.
Funded by the National Institutes of Health (NIH), the ABCD Research Consortium includes:

Participants are followed from late childhood into young adulthood with:

Using cutting-edge neuroimaging and deep phenotyping, ABCD examines how real-world experiences
(e.g., sports, videogames, social media, sleep patterns, substance use) interact with biology to shape:

The results are intended to inform families, educators, clinicians, and policymakers with practical knowledge to support youth well-being and success.

This repository provides derived diffusion MRI FIB files for ABCD sites 01–22, processed into tractography-ready derivatives for use in DSI Studio and related tools.

Raw ABCD data are not redistributed here.
Access to original data (DICOM / NIfTI / full phenotypes) must follow ABCD’s NDA-based data-sharing policies.


License

The derived FIB files in this repository are shared under the
Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0).

If you use these data, please acknowledge:

“This work used XSEDE/ACCESS computing resources: TG-CIS200026 & MED230052.”

You should also follow the ABCD Study’s citation guidance, e.g.:

“Source: Adolescent Brain Cognitive Development℠ (ABCD) Study.”


ABCD Consortium and Study Sites

The ABCD Research Consortium consists of a Coordinating Center, DAIRC, and 21 study sites, including:

Each site contributes to the nationwide sample with harmonized MRI protocols and coordinated behavioral/clinical assessments.

The ABCD Study®, Teen Brains. Today’s Science. Brighter Future.® and related marks are registered or service marks of the
U.S. Department of Health & Human Services (HHS).


Dataset in This Repository

This repository contains derived diffusion MRI FIB datasets organized by site-level tags:

Each tag corresponds to one or more ABCD sites or batches of participants, processed with a consistent DSI Studio workflow.


Download All ABCD Site Datasets

The commands below will download all 22 site releases (abcd-site01abcd-site22) from the GitHub API.

Note:


Linux / macOS — bash

This loop will iterate over abcd-site01 to abcd-site22 and download all associated assets:

for i in $(seq -w 1 22); do
  curl -s "https://api.github.com/repos/data-nih/abcd/releases/tags/abcd-site$i" \
    | jq -r '.assets[].browser_download_url' \
    | xargs -n1 -P4 curl -LO
done

Windows — PowerShell 5.x

In File Explorer, go to your target folder, click the address bar, type powershell, and press Enter. Then run:

1..22 | ForEach-Object {
  (Invoke-RestMethod ("https://api.github.com/repos/data-nih/abcd/releases/tags/abcd-site{0:D2}" -f $_)).assets |
    ForEach-Object {
      Invoke-WebRequest $_.browser_download_url -OutFile (Split-Path $_.browser_download_url -Leaf)
    }
}

This:


Notes and Responsibilities

If you build tools, atlases, or publications using these derivatives, consider sharing them back with the community to extend the impact of the ABCD Study℠.