--- title: "Getting Data from the Human Connectome Project (HCP)" author: "John Muschelli" date: "`r Sys.Date()`" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Getting Data from the Human Connectome Project (HCP)} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- All code for this document is located at [here](https://raw.githubusercontent.com/muschellij2/neuroc/master/neurohcp/index.R). ```{r setup, include=FALSE} library(neurohcp) library(dplyr) knitr::opts_chunk$set(echo = TRUE, cache = FALSE, comment = "") ``` # Human Connectome Project (HCP) The [Human Connectome Project](https://www.humanconnectome.org/) (HCP) is a consortium of sites whose goal is to map "human brain circuitry in a target number of 1200 healthy adults using cutting-edge methods of noninvasive neuroimaging" ([https://www.humanconnectome.org/](https://www.humanconnectome.org/)). It includes a large cohort of individuals with a vast amount of neuroimaging data ranging from structural magnetic resonance imaging (MRI), functional MRI -- both during tasks and resting-state-- and diffusion tensor imaging (DTI), from multiple sites. # Getting Access to the Data The data is available to those that agree to the license. Users can either pay to get hard drives of the data sent to them, named "Connectome In A Box", or access the data online. The data can be obtained through the database at [http://db.humanconnectome.org](http://db.humanconnectome.org). Data can be downloaded from the website directly in a browser or through an Amazon Simple Storage Solution (S3) bucket. We will focus on accessing the data from S3. ## Getting an Access/API Key Once logged into [http://db.humanconnectome.org](http://db.humanconnectome.org) and the terms are accepted, the user must enable Amazon S3 access for their Amazon account. The user will then be provided an access key identifier (ID), which is required to authenticate a user to Amazon as well as a secret key. These access and secret keys are necessary for the [neurohcp package](https://github.com/muschellij2/neurohcp), and will be referred to as access keys or API (application program interface) keys. # Installing the neurohcp package We will install the neurohcp package using the Neuroconductor installer: ```{r, eval = FALSE} source("http://neuroconductor.org/neurocLite.R") neuro_install("neurohcp", release = "stable") ``` ## Setting the API key In the `neurohcp` package, `set_aws_api_key` will set the AWS access keys: ```{r, eval = FALSE} set_aws_api_key(access_key = "ACCESS_KEY", secret_key = "SECRET_KEY") ``` or these can be stored in `AWS_ACCESS_KEY_ID`, `AWS_SECRET_ACCESS_KEY` environment variables, respectively. Once these are set, the functions of neurohcp are ready to use. To test that the API keys are set correctly, one can run `bucketlist`: ```{r blist_show, eval = FALSE} if (have_aws_key()) { neurohcp::bucketlist() } ``` ```{r blist_go, echo = FALSE} if (have_aws_key()) { neurohcp::bucketlist(verbose = FALSE) } ``` We see that `hcp-openaccess` is a bucket that we have access to, and therefore have access to the data. ## Getting Data: Downloading a Directory of Data In the neurohcp package, there is a data set indicating the scans read for each subject, named `hcp_900_scanning_info`. We can subset those subjects that have diffusion tensor imaging: ```{r, eval = TRUE} ids_with_dwi = hcp_900_scanning_info %>% filter(scan_type %in% "dMRI") %>% select(id) %>% unique head(ids_with_dwi) ``` Let us download the complete directory of diffusion data using `download_hcp_dir`: ```{r, eval = FALSE, echo = TRUE} r = download_hcp_dir("HCP/100307/T1w/Diffusion", verbose = FALSE) print(basename(r$output_files)) ``` ```{r, eval = TRUE, echo = FALSE} r = list(output_files = c("bvals", "bvecs", "data.nii.gz", "grad_dev.nii.gz", "nodif_brain_mask.nii.gz") ) r$output_files ``` This diffusion data is the data that can be used to create summaries such as fractional anisotropy and mean diffusivity. If we create a new column with all the directories, we can iterate over these to download all the diffusion data for these subjects from the HCP database. ```{r, eval = FALSE} ids_with_dwi = ids_with_dwi %>% mutate(id_dir = paste0("HCP/", id, "/T1w/Diffusion")) ``` ## Getting Data: Downloading a Single File We can also download a single file using `download_hcp_file`. Here we will simply download the `bvals` file: ```{r dl_file} if (have_aws_key()) { ret = download_hcp_file("HCP/100307/T1w/Diffusion/bvals", verbose = FALSE) } ```