XNAT is an open source imaging informatics platform developed by the Neuroinformatics Research Group at Washington University. XNAT was originally developed in the Buckner Lab at Washington University, now at Harvard University. It facilitates common management, productivity, and quality assurance tasks for imaging and associated data. Thanks to its extensibility, XNAT can be used to support a wide range of imaging-based projects.
There are several projects that currently use XNAT to manage a vast number of datasets.
- NITRC - Neuroimaging Informatics Tools and Resources Clearinghouse is currently a free one-stop-shop collaboratory for science researchers that need resources such as neuroimaging analysis software, publicly available data sets, or computing power.
- ConnectomeDB - The Human Connectome Project (HCP) is a project to construct a map of the complete structural and functional neural connections in vivo within and across individuals.
- XNAT Central - XNAT Central is a database for sharing neuroimaging and related data with select collaborators or the general community.
For a more complete list of XNAT implementations around the world you can click here.
You can install Rxnat
from github with:
# install.packages("remotes")
remotes::install_github("adigherman/Rxnat")
XNAT projects can be public or private. In order to access a private repository a set of credentials are required. To obtain a user name and password combo you will need to visit:
- HCP (Human Connectome Project) - new account request and click on the Register button
- NITRC - new account request. Some of the NITRC hosted projects will require additional access requests but this can be easily requested using the NITRC web interface for each project.
- XNAT Central - this is mostly public, but you can also perform a new account request if any of the projects require it.
The Rxnat
package will accept credentials provided in the function call or read from the system environment.
To establish a connection using the credentials as function parameters we can call the xnat_connect
function:
nitrc <- xnat_connect('https://nitrc.org/ir', username='XXXX', password='YYYY', xnat_name=NULL)
To use system environment variables we need to add them to the .Renviron
file located in the user's home folder. Use Sys.getenv("HOME")
to get the path (for unix/osx users the location can be easily accessed with ~, eg. vi ~/.Renviron
).
The Rxnat
package will be able to automatically read / use a system environment variable provided the following format is used: XXXX_RXNAT_USER
and XXXX_RXNAT_PASS
. XXXX
is provided as an argument when an XNAT connection is initiated.
As an example NITRC
is used as argument and the system environment variables names should be NITRC_RXNAT_USER
, and NITRC_RXNAT_PASS
.
nitrc <- xnat_connect('https://nitrc.org/ir', xnat_name='NITRC')
Once a connection is established using the xnat_connect
function a list of available projects can be easily retrieved by using the class internal function projects
:
hcp <-xnat_connect('https://db.humanconnectome.org', xnat_name = "hcp")
hcp_projects <- hcp$projects()
head(hcp_projects[c('id','name')])
id name
1 CCF_DMCC_STG DMCC Staging Project
2 HCP_1200 WU-Minn HCP Data - 1200 Subjects
3 HCP_500 WU-Minn HCP Data – 500 Subjects + MEG2
4 HCP_500_RST HCP 500 Subject + MEG2 Restricted Data
5 HCP_900 WU-Minn HCP Data - 900 Subjects + 7T
6 HCP_Coded HCP_Coded
A full list of subjects for each XNAT connection can be retrieved using the subjects
function:
hcp_subjects <- hcp$subjects()
head(hcp_subjects)
project ID label gender handedness yob education ses group race ethnicity
1 HCP_Subjects ConnectomeDB_S02177 100004 M NA NA NA NA NA NA NA
2 HCP_Subjects ConnectomeDB_S01982 100206 M NA NA NA NA NA NA NA
3 HCP_Subjects ConnectomeDB_S00230 100307 F NA NA NA NA NA NA NA
4 HCP_Subjects ConnectomeDB_S00381 100408 M NA NA NA NA NA NA NA
5 HCP_Subjects ConnectomeDB_S01590 100610 M NA NA NA NA NA NA NA
6 HCP_Subjects ConnectomeDB_S00551 101006 F NA NA NA NA NA NA NA
To obtain a full list of experiments the experiments
function will be used:
hcp_experiments <- hcp$experiments()
head(hcp_experiments)
project subject ID type label age
1 HCP_Subjects 100206 ConnectomeDB_E13304 xnat:mrSessionData 100206_3T 26
2 HCP_Subjects 100307 ConnectomeDB_E03657 xnat:mrSessionData 100307_3T 26
3 HCP_Subjects 100307 ConnectomeDB_E10373 xnat:megSessionData 100307_MEG NA
4 HCP_Subjects 100408 ConnectomeDB_E03658 xnat:mrSessionData 100408_3T 31
5 HCP_Subjects 100610 ConnectomeDB_E11186 xnat:mrSessionData 100610_3T 26
6 HCP_Subjects 100610 ConnectomeDB_E24170 xnat:mrSessionData 100610_7T 26
The scan resources for an experiment can be retrieved using the get_xnat_experiment_resources
function:
ConnectomeDB_E13304_resources <- hcp$get_xnat_experiment_resources('ConnectomeDB_E13304')
head(ConnectomeDB_E13304_resources[c('Name','URI')])
Name URI
1 100206_3T_BIAS_BC.nii.gz /data/experiments/ConnectomeDB_E13304/scans/101/resources/274961/files/100206_3T_BIAS_BC.nii.gz
2 100206_3T_BIAS_32CH.nii.gz /data/experiments/ConnectomeDB_E13304/scans/102/resources/274962/files/100206_3T_BIAS_32CH.nii.gz
3 100206_3T_T1w_MPR1.nii.gz /data/experiments/ConnectomeDB_E13304/scans/103/resources/274963/files/100206_3T_T1w_MPR1.nii.gz
4 100206_3T_T2w_SPC1.nii.gz /data/experiments/ConnectomeDB_E13304/scans/106/resources/274964/files/100206_3T_T2w_SPC1.nii.gz
5 100206_3T_FieldMap_Magnitude.nii.gz /data/experiments/ConnectomeDB_E13304/scans/107/resources/274965/files/100206_3T_FieldMap_Magnitude.nii.gz
6 100206_3T_FieldMap_Phase.nii.gz /data/experiments/ConnectomeDB_E13304/scans/108/resources/274966/files/100206_3T_FieldMap_Phase.nii.gz
If you are interested just in a subset of subjects/experiments that match a certain criteria you can use the query_scan_resources
function. Accepted query parameters are:
- subject_ID - subject ID identifier
- project - the project ID
- age - subject's age
- experiment_ID - experiment ID identifier
- type - type of image scan
- TR - repetition time
- TE - echo time
- TI - inversion time
- flip - flip status
- voxel_res - overall image voxel resolution
- voxel_res_X - voxel X resolution
- voxel_res_Y - voxel Y resolution
- voxel_res_Z - voxel Z resolution
- orientation - image orientation
To retrieve a list of all subject IDs and associated experiment IDs we can use the query_scan_resources
function. In the example below, we are querying the HCP XNAT database for all subjects belonging the the HCP_500 project with scans taken at age 26.
hcp_500_age_26 <- query_scan_resources(hcp,age='26', project='HCP_500')
head(hcp_500_age_26[c("subject_ID","experiment_ID", "Project", "Age")])
subject_ID experiment_ID Project Age
1 ConnectomeDB_S00230 ConnectomeDB_E03657 HCP_500 26
2 ConnectomeDB_S00231 ConnectomeDB_E03664 HCP_500 26
3 ConnectomeDB_S00234 ConnectomeDB_E03684 HCP_500 26
4 ConnectomeDB_S00235 ConnectomeDB_E03690 HCP_500 26
5 ConnectomeDB_S00236 ConnectomeDB_E03694 HCP_500 26
6 ConnectomeDB_S00237 ConnectomeDB_E03988 HCP_500 26
To download a single file we will use the download_file
function. Using the first experiment_ID
from the above example, we will get all scan resources associated with it first.
scan_resources <- get_scan_resources(hcp,'ConnectomeDB_E03657')
scan_resources[1,"Name"]
[1] "100307_3T_BIAS_BC.nii.gz"
> scan_resources[1,"URI"]
[1] "/data/experiments/ConnectomeDB_E03657/scans/101/resources/69128/files/100307_3T_BIAS_BC.nii.gz"
To download the resource file (100307_3T_BIAS_BC.nii.gz) we will do:
> download_xnat_file(hcp,"/data/experiments/ConnectomeDB_E03657/scans/101/resources/69128/files/100307_3T_BIAS_BC.nii.gz")
[1] "/var/folders/wb/l7jtkdy14f761vm4xr9zxjj80000gn/T//RtmpFfYbQ7/100307_3T_BIAS_BC.nii.gz"
To download all the T2w type images from experiment ConnectomeDB_E03657 we will use the download_xnat_dir
function.
download_xnat_dir(hcp, experiment_ID='ConnectomeDB_E03657',scan_type='T2w', verbose=TRUE)
Downloading: 28 MB [1] "/var/folders/wb/l7jtkdy14f761vm4xr9zxjj80000gn/T//RtmpFfYbQ7/ConnectomeDB_E03657.zip"
To retrieve just the nii.gz file we can use the extract
parameter.
T2w_file <- download_xnat_dir(hcp, experiment_ID='ConnectomeDB_E03657',scan_type='T2w', extract=TRUE)
T2w_file
[1] "/var/folders/wb/l7jtkdy14f761vm4xr9zxjj80000gn/T//RtmpqNhtes/100307_3T/scans/104-T2w/resources/NIFTI/files/100307_3T_T2w_SPC1.nii.gz"