Repository containing code to process MRI data from spinal cord injury (SCI) patients (both DCM and tSCI) using the Spinal Cord Toolbox (SCT).
Steps:
- DICOM to NIfTI (BIDS) conversion
- Processing (spinal cord and lesion segmentation, vertebral labeling)
- Quality control (QC) + manual compression level labeling
- Lesion metric computation -- not implemented yet
- Spinal Cord Toolbox v6.4: toolbox for processing spinal cord MRI data
- dcm2niix >= v1.0.20220505: tool for converting DICOM images into the NIfTI format
- FSLeyes: tool for visualizing NIfTI images
Note
The installation process below is currently only supported on macOS.
Click the triangle to expand/collapse the section
- Open a new terminal:
Press command + space and type Terminal
and press return/enter.
- Run the following commands in the terminal (you can copy-paste the whole block):
ℹ️ The installation process will take a few minutes.
# Go to your home directory
cd ~
# Download SCT v6.4
curl -L -o 6.4.zip https://github.com/spinalcordtoolbox/spinalcordtoolbox/archive/refs/tags/6.4.zip
# Unzip the downloaded file --> the unzipped directory will be named spinalcordtoolbox-6.4
unzip 6.4.zip
rm 6.4.zip
# Go to the SCT directory
cd spinalcordtoolbox-6.4
# Install SCT v6.4
./install_sct -iyc
# '-i' Install in-place (i.e., in the current directory)
# '-y' Install without interruption with 'yes' as default answer
# '-c' Disables sct_check_dependencies so we can check it separately
- Check that SCT was installed correctly:
Close the terminal and open a new one (press command + space and type Terminal
and press return/enter.).
# Check that SCT was installed correctly
sct_check_dependencies
# Display location of SCT installation
echo $SCT_DIR
The expected output is [OK]
for all dependencies.
Click the triangle to expand/collapse the section
- Open a new terminal (if you closed the previous one):
Press command + space and type Terminal
and press return/enter.
Then, activate the SCT conda environment:
# Go to the SCT directory
cd $SCT_DIR
# Activate SCT conda environment
source ./python/etc/profile.d/conda.sh
conda activate venv_sct
- Run the following command in the terminal (you can copy-paste the whole block):
# Install dcm2niix using pip
pip install dcm2niix
- Check that
dcm2niix
was installed correctly:
dcm2niix --version
The expected output is the version of dcm2niix
.
Click the triangle to expand/collapse the section
- Open a new terminal (if you closed the previous one):
Press command + space and type Terminal
and press return/enter.
Then, activate the SCT conda environment:
# Go to the SCT directory
cd $SCT_DIR
# Activate SCT conda environment
source ./python/etc/profile.d/conda.sh
conda activate venv_sct
- Run the following command in the terminal (you can copy-paste the whole block):
# Install fsleyes from conda-forge
conda install -c conda-forge fsleyes
- Check that
fsleyes
was installed correctly:
fsleyes --version
The expected output is the version of fsleyes
.
Click the triangle to expand/collapse the section
- Open a new terminal (if you closed the previous one):
Press command + space and type Terminal
and press return/enter.
- Run the following commands in the terminal (you can copy-paste the whole block):
# Go to your home directory
cd ~
# Download the repository --> the repository will be downloaded as zip file named balgrist-sci.zip
curl -L -o balgrist-sci.zip https://github.com/sct-pipeline/balgrist-sci/archive/refs/tags/r20241119.zip
# Unzip the downloaded file --> the unzipped directory will be named balgrist-sci-r20241119
unzip balgrist-sci.zip
rm balgrist-sci.zip
# Rename the unzipped directory to balgrist-sci
mv balgrist-sci-r20241119 balgrist-sci
# Make the process_data.sh script executable
cd balgrist-sci
chmod u+x process_data.sh
- Check that the repository was downloaded correctly:
# Activate SCT conda environment
source ./python/etc/profile.d/conda.sh
conda activate venv_sct
# Call the help of the file_loader.py script
python ~/balgrist-sci/file_loader.py --help
The expected output is the help message of the file_loader.py
script.
Click the triangle to expand/collapse the section
A file organization according to the BIDS is shown below.
Note that only the sourcedata
directory containing folders with DICOM files for each subject is initially required.
The rest of the directories and files will be created during the processing; see the next section.
├── participants.tsv --> file with participants information; see example below
├── sourcedata --> folder containing DICOM files for each subject
│ ├── dir_20230711 --> folder with DICOM files for first subject and first session
│ ├── dir_20230711 --> folder with DICOM files for second subject and first session
│ ├── ...
│ ├── dir_20240815 --> folder with DICOM files for first subject and second session
│ └── ...
├── bids --> folder with BIDS-compliant data
│ ├── sub-001 --> folder containing NIfTI files for first subject
│ │ ├── ses-01 --> first session
│ │ │ ├── anat --> folder with anatomical data
│ │ │ │ ├── sub-001_ses-01_T1w.nii.gz
│ │ │ │ ├── sub-001_ses-01_T2w.nii.gz
│ │ │ │ ├── ...
│ │ │ └── dwi --> folder with diffusion data
│ │ │ ├── sub-001_ses-01_dwi.nii.gz
│ │ │ ├── sub-001_ses-01_dwi.bval
│ │ │ ├── sub-001_ses-01_dwi.bvec
│ │ └── ses-02 --> second session
│ │ ├── ...
│ ├── sub-002 --> folder containing NIfTI files for second subject
│ │ ├── ...
│ ├── ...
│ └── derivatives --> folder to store visually checked and/or manually corrected data (for example, spinal cord segmentations)
│ └── labels
│ ├── sub-001 --> first subject
│ │ ├── ses-01 --> first session
│ │ │ ├── anat
│ │ │ │ ├── sub-001_ses-01_T2w_label-SC_seg.nii.gz --> spinal cord (SC) binary segmentation
│ │ │ │ ├── sub-001_ses-01_T2w_label-compression_label.nii.gz --> binary compression labeling
│ │ │ │ ├── ...
│ │ │ └── dwi
│ │ │ ├── sub-001_ses-01_dwi_label-SC_seg.nii.gz
│ │ │ ├── ...
│ │ └── ses-02 --> second session
│ │ ├── ...
│ ├── sub-002
│ └── ...
└── data_processed --> folder with processed data
├── sub-001 --> folder with processed data for first subject
│ ├── ses-01 --> first session
│ │ ├── anat --> folder with processed anatomical data
│ │ │ ├── ...
...
participants.tsv
example:
participant_id | ses_id | source_id | age | sex |
---|---|---|---|---|
sub-001 | ses-01 | dir_20230711 | 42 | M |
sub-001 | ses-02 | dir_20240815 | 43 | M |
sub-002 | ses-01 | dir_20230713 | 57 | F |
ℹ️ Notice that we use one row per session. This means that, for example, sub-001
has two rows in the table because they have two sessions.
The entire analysis pipeline is orchestrated by the process_data.sh
script.
The script first converts DICOM files to NIfTI (BIDS) format using dcm2niix
.
Then, it processes the data using SCT functions. After running the SCT functions, the script opens FSLeyes to allow the
user to visually check the results.
Usage:
bash process_data.sh -d <dicom folder> -b <bids folder> -r <results folder> -p <participant id> -s <session id> -c <contrasts> [-age <age> -sex <sex>]
MANDATORY ARGUMENTS
-d <dicom folder> Path to the folder containing DICOM images. Example: ~/sci-balgrist-study/sourcedata/dir_20230711
-b <bids folder> Path to the BIDS folder where the converted NIfTI images will be stored. Example: ~/sci-balgrist-study/bids
-r <results folder> Path to the folder where the results will be stored. Example: ~/sci-balgrist-study/data_processed
-p <participant id> Participant ID. Example: sub-001
-s <session id> Session ID. Example: ses-01
-c <contrasts> MRI contrasts to use (space-separated if multiple). Examples: 'T2w' or 'T2w dwi'
OPTIONAL ARGUMENTS
-a <age> Age of the subject at the time of the MRI scan. The provided value will be stored to participants.tsv file. Example: 25. Default: n/a
-x <sex> Sex of the subject. The provided value will be stored to participants.tsv file. Example: M. Default: n/a
Example:
bash process_data.sh \
-d ~/data/experiments/balgrist-sci/source_data/dir_20231010 \
-b ~/data/experiments/balgrist-sci/bids \
-r ~/data/experiments/balgrist-sci/data_processed \
-p sub-001 \
-s ses-01 \
-c T2w dwi \
-a 30 \
-x M