4  MRI Image Derived Phenotypes

Often, researchers may wish to simply have a set of features that they can use to train and test predictive models. When those features are extracted from the neuroimaging data, we refer to them as image-derived phenotypes. This kit describes a subset of them that have been compiled into a single table. While this table of image-derived phenotypes does not emcompass all available measurements, they are often a good place to start analyses.

The selection of phenotypes was based on those that are available within the UK Biobank (Miller et al., 2016), and they are derived from the structural and functional MRI scans (diffusion MRI phenotypes will be available in a subsequent release). A full data dictionary is available here, and they are summarized below.

Miller, K. L., Alfaro-Almagro, F., Bangerter, N. K., Thomas, D. L., Yacoub, E., Xu, J., Bartsch, A. J., Jbabdi, S., Sotiropoulos, S. N., Andersson, J. L., et al. (2016). Multimodal population brain imaging in the UK biobank prospective epidemiological study. Nature Neuroscience, 19(11), 1523–1536. https://doi.org/10.1038/nn.4393

4.1 sMRI

4.2 fMRI

  • 104 nodal fraction of low-frequency fluctuation values from the NeuroMark 2.1 multi-resolution components (Chapter 15), for each of the four functional scans
  • 5460 connectivities from NeuroMark 2.1 multi-resolution functional connectivity matrices (Chapter 15), for each of the four functional scans

4.3 Starting Project

4.3.1 Locate Data

On TACC, the neuroimaging data are stored underneath the releases. For example, data release v2.#.# is underneath

pre-surgery/mris

The table, mri.tsv, is in a file are underneath the folder idp. Let’s take a look.

$ ls idp/
mask_volumes.json  mask_volumes.tsv  mri.json  mri.tsv

Even though this is only a subset of the available neuroimaging derivatives, there are many fields.

$ awk '{print NF; exit}' idp/mri.tsv 
21886

4.3.2 Extract Data

Any function capable of parsing tab-separated value files can load in this data. Here, let’s take the participant identifier and the REST1 fALFF measurements.

readr::read_tsv(
  "data/idp/mri.tsv",
  col_select = c("sub", tidyselect::matches("task_rest_run_1.*falff"))
) |>
  head()
sub task_rest_run_1_component_1_falff task_rest_run_1_component_2_falff task_rest_run_1_component_3_falff task_rest_run_1_component_4_falff task_rest_run_1_component_5_falff task_rest_run_1_component_6_falff task_rest_run_1_component_7_falff task_rest_run_1_component_8_falff task_rest_run_1_component_9_falff task_rest_run_1_component_10_falff task_rest_run_1_component_11_falff task_rest_run_1_component_12_falff task_rest_run_1_component_13_falff task_rest_run_1_component_14_falff task_rest_run_1_component_15_falff task_rest_run_1_component_16_falff task_rest_run_1_component_17_falff task_rest_run_1_component_18_falff task_rest_run_1_component_19_falff task_rest_run_1_component_20_falff task_rest_run_1_component_21_falff task_rest_run_1_component_22_falff task_rest_run_1_component_23_falff task_rest_run_1_component_24_falff task_rest_run_1_component_25_falff task_rest_run_1_component_26_falff task_rest_run_1_component_27_falff task_rest_run_1_component_28_falff task_rest_run_1_component_29_falff task_rest_run_1_component_30_falff task_rest_run_1_component_31_falff task_rest_run_1_component_32_falff task_rest_run_1_component_33_falff task_rest_run_1_component_34_falff task_rest_run_1_component_35_falff task_rest_run_1_component_36_falff task_rest_run_1_component_37_falff task_rest_run_1_component_38_falff task_rest_run_1_component_39_falff task_rest_run_1_component_40_falff task_rest_run_1_component_41_falff task_rest_run_1_component_42_falff task_rest_run_1_component_43_falff task_rest_run_1_component_44_falff task_rest_run_1_component_45_falff task_rest_run_1_component_46_falff task_rest_run_1_component_47_falff task_rest_run_1_component_48_falff task_rest_run_1_component_49_falff task_rest_run_1_component_50_falff task_rest_run_1_component_51_falff task_rest_run_1_component_52_falff task_rest_run_1_component_53_falff task_rest_run_1_component_54_falff task_rest_run_1_component_55_falff task_rest_run_1_component_56_falff task_rest_run_1_component_57_falff task_rest_run_1_component_58_falff task_rest_run_1_component_59_falff task_rest_run_1_component_60_falff task_rest_run_1_component_61_falff task_rest_run_1_component_62_falff task_rest_run_1_component_63_falff task_rest_run_1_component_64_falff task_rest_run_1_component_65_falff task_rest_run_1_component_66_falff task_rest_run_1_component_67_falff task_rest_run_1_component_68_falff task_rest_run_1_component_69_falff task_rest_run_1_component_70_falff task_rest_run_1_component_71_falff task_rest_run_1_component_72_falff task_rest_run_1_component_73_falff task_rest_run_1_component_74_falff task_rest_run_1_component_75_falff task_rest_run_1_component_76_falff task_rest_run_1_component_77_falff task_rest_run_1_component_78_falff task_rest_run_1_component_79_falff task_rest_run_1_component_80_falff task_rest_run_1_component_81_falff task_rest_run_1_component_82_falff task_rest_run_1_component_83_falff task_rest_run_1_component_84_falff task_rest_run_1_component_85_falff task_rest_run_1_component_86_falff task_rest_run_1_component_87_falff task_rest_run_1_component_88_falff task_rest_run_1_component_89_falff task_rest_run_1_component_90_falff task_rest_run_1_component_91_falff task_rest_run_1_component_92_falff task_rest_run_1_component_93_falff task_rest_run_1_component_94_falff task_rest_run_1_component_95_falff task_rest_run_1_component_96_falff task_rest_run_1_component_97_falff task_rest_run_1_component_98_falff task_rest_run_1_component_99_falff task_rest_run_1_component_100_falff task_rest_run_1_component_101_falff task_rest_run_1_component_102_falff task_rest_run_1_component_103_falff task_rest_run_1_component_104_falff
10706 0.0786879 0.1015881 0.0520490 0.0483026 0.1223071 0.0568095 0.0452842 0.3831314 0.0715804 0.1039394 0.1498999 0.0355465 0.0474389 0.0360338 0.0540700 0.1952123 0.0922157 0.0939778 0.1390081 0.1786949 0.0880629 0.1439291 0.0304071 0.7214057 0.2657748 0.4563607 0.1990452 0.7124557 0.4065492 0.1149822 0.7587397 0.3292898 0.1611246 0.5666743 0.3024356 1.3012945 0.5423628 0.2883330 0.1491495 0.1134375 0.2557162 0.1274462 0.1448448 0.0914177 0.0823300 0.4554486 0.3169977 0.0833417 0.0960591 0.1896266 0.1383730 0.2508245 0.2748099 0.0828794 0.0739952 0.0484130 0.0645167 0.5624045 0.1218237 0.0997725 0.1455603 0.2138334 0.0744494 0.2924204 1.076772 0.0771103 0.9745319 0.8880736 0.1337948 0.347344 0.5187176 0.6862605 0.2558009 0.8931359 0.607946 1.2715726 4.309951 1.249261 0.6578997 0.1574201 0.1676942 0.3944165 0.1677946 0.1188327 0.0445988 0.0397639 0.6694421 0.8645875 0.1079284 0.3799769 0.6508472 0.1629966 0.1664630 0.0489054 0.073417 1.083527 0.6251677 0.4091274 0.1363527 0.161935 0.4375215 0.2133081 0.2437414 0.2533421
10949 3.1973564 2.0104907 0.6774018 0.8387967 0.6730202 0.7077440 1.8370845 3.4066761 0.4744766 2.5327360 1.3979509 0.1393307 0.1411139 0.4805324 0.1552862 0.1897447 1.0159152 0.8411978 0.1526980 0.2681888 0.9733428 0.3499467 0.4134055 1.1514529 0.3187025 0.1805508 0.2289679 0.5541957 0.1903484 0.5524656 0.7106520 0.3307967 0.3232945 0.9485090 0.1488265 0.9838083 0.3379496 0.9672931 0.5694141 0.3581805 0.1536887 0.4333138 0.1446251 0.9373756 0.5931172 2.4347271 0.1928686 0.1919789 0.2248676 1.0244999 0.2523271 0.9573863 0.1229044 0.1989800 1.6496888 0.2035102 0.3870932 2.9389716 1.8431935 0.5861836 1.5282956 4.2786026 3.8688419 11.3178923 6.402940 2.1140104 4.8800343 2.1194805 0.7465672 3.421731 10.7982628 6.0010985 4.4489743 6.8590652 16.472805 8.0058048 17.980137 20.051030 0.6119652 0.9595895 1.2549103 2.3166638 0.4042708 0.8841134 1.9571744 0.9743531 1.7773377 0.3273649 2.6340995 2.5696388 2.0819447 1.0818047 0.9391293 0.1968395 1.442297 4.372916 2.4492176 4.7613504 1.7348944 2.823335 2.2479147 1.0793851 0.9239233 0.5159289
10734 0.9942507 2.1102403 1.5471956 2.4625590 1.5024047 1.8553465 1.8630527 6.0606817 1.5015348 1.5943682 1.1525736 4.7941183 1.4797866 4.6484995 2.4963343 0.7730618 2.3270206 1.4694644 1.0579937 0.3780062 1.9572301 3.4679811 3.7798500 4.3290947 2.4068691 1.4361362 1.3618992 1.0506919 0.9222745 0.7537495 0.9053314 1.1041545 0.9498646 1.0920011 0.7996777 1.0813039 1.7382434 1.0461950 1.2975234 13.9701434 5.1231815 3.8254268 8.3948652 5.5891773 1.9383714 15.1377964 9.8289444 2.5115488 8.4633433 1.6675712 4.7567544 1.2106880 8.0202187 2.5689193 1.6050369 2.0395170 11.3548738 1.5583567 0.8717730 2.9291386 1.1284211 4.1822458 1.5452485 6.1828488 6.874893 1.2820714 3.4751416 1.7748792 1.4954024 2.421393 1.4881492 4.3497479 6.7651989 1.4465459 2.504938 0.9376264 4.713245 9.317959 0.9477148 7.0279155 12.9169955 12.8882654 9.5773402 9.2145345 1.7171296 2.6753037 11.4222797 2.3485370 1.7919343 9.4807954 15.8440906 12.8968765 9.6820542 4.9523427 8.998409 6.489865 8.0880772 0.9490143 2.2256835 1.754093 2.1184884 1.0473221 2.2545155 2.2805632
20371 25.5749447 35.7224756 47.0236940 29.2602679 29.5763099 13.0700966 27.3131944 29.0478421 14.6215353 22.1768745 41.7050432 1.4000048 1.7113886 2.2577183 2.9330957 1.7422246 2.3254635 1.6944268 2.7044531 0.9278033 1.5989925 1.3898004 2.0139688 4.5990620 1.9900991 3.5056201 2.7241976 5.8188841 0.6733409 1.6557804 5.2041519 0.4715949 0.6614720 0.5253330 0.3557549 4.1036786 3.3945785 2.1984961 3.4723373 3.4962072 4.7737226 3.0541800 5.3535195 6.9037354 3.2124410 8.7068544 6.7377384 5.4432010 3.9362429 5.2871229 5.0751630 4.5380525 4.2747413 2.5143122 8.9091814 1.6816211 11.1533066 7.4848479 7.6151316 3.7642946 10.2232145 17.3030953 21.3839954 19.1631844 19.941696 4.5344094 6.2702269 2.6487904 4.8232639 5.105864 21.0235920 10.5076265 22.9399494 18.2594597 12.308736 14.7335989 20.820345 23.668191 14.3007943 6.9532808 16.5451816 10.8850655 8.9673138 17.7020588 8.2101824 3.9443151 8.3471716 2.9248076 7.6769079 9.3928185 8.2193844 4.6354884 8.8486823 12.0432286 11.716801 24.044725 17.4553251 25.0828435 23.0494995 26.421274 5.2569240 9.3275329 22.2273386 21.7283741
20108 18.6251409 3.1417886 12.4891718 18.8977753 12.6509848 6.4476009 12.3650452 14.7008763 2.1481520 17.8531686 30.0152961 2.4437188 4.2241237 1.4010559 4.5990861 8.5309692 4.8122363 0.5706313 5.9267987 0.4973967 1.4873994 4.4417717 8.9664500 1.8649188 3.3708499 2.3901969 2.4497818 0.6905165 0.4830677 1.5785550 0.4449965 0.5673039 1.0162321 0.4204853 0.3619325 0.7271523 0.7240155 1.3887666 4.7342407 5.4870320 5.6309731 2.6717269 2.5617677 3.8972948 2.7862887 11.4274187 8.3295237 6.3799863 3.3841354 5.8237647 5.9046200 7.1863873 6.3013154 1.1306020 2.7599192 0.9581853 10.8583483 11.0290449 16.1785894 6.0480217 1.9549181 1.5329131 1.8112361 5.6555663 3.047952 2.6708740 4.3666995 2.9124218 1.0410182 1.529801 1.1607579 0.7085752 12.2726830 4.3442416 3.564258 28.5755172 9.354329 1.178745 1.0709303 5.6325308 4.0920851 4.0586992 2.1854832 3.1881345 0.5686186 0.3829533 2.4884346 0.7910992 1.2569983 18.7833101 6.5724580 12.2587359 6.1051981 7.1708133 2.553131 1.622521 15.8567483 2.7604504 5.8545529 4.659103 4.4860115 3.7667571 37.9717441 10.8034622
10689 4.8982010 1.4236021 0.8000560 1.3112649 0.9497531 0.6045389 0.8669525 6.7999566 0.7115647 1.3240181 1.5714654 1.0919076 1.1415398 0.6040889 0.7260734 0.5848013 0.6259627 0.5262468 0.5037600 0.5430432 0.5004719 0.8852444 0.4779471 16.1494909 1.1327411 0.6568852 0.6641081 0.3035981 0.1894327 1.1745409 0.2620231 0.3260040 0.1978448 0.2058264 0.3848176 0.2139824 0.3710489 2.2774761 3.5511112 1.8483530 4.6925348 1.8131454 2.7495919 1.9972919 1.0150926 2.2917144 1.7614677 1.1990434 0.8533773 0.7250450 2.4186098 5.0206209 1.0729183 0.4206464 3.3935379 0.3003598 3.0941016 2.3796881 1.1290238 3.2210523 1.2453773 4.5433723 0.5043934 5.4808394 8.696819 0.6787812 0.5621154 0.7870903 0.5879351 3.321508 1.8274404 11.3025895 4.5229000 4.1824076 4.755424 8.6326317 6.225141 8.402936 1.1424090 8.9946358 14.0605290 11.7905303 20.9674751 14.5581269 0.3642943 0.2973175 0.4813669 0.2414017 1.6965179 5.1197413 2.6862918 1.2644760 0.8125645 2.2093241 11.396124 10.181205 1.0958561 2.1347624 6.4774805 4.656306 11.7436336 8.8303819 4.6515175 3.6431154

4.4 Considerations While Working on the Project

4.4.1 Variability Across Scanners

Many MRI biomarkers exhibit variability across the scanners, which may confound some analyses. For an up-to-date assessment of the issue and overview of current thinking, please see Confluence.

4.4.2 Data Quality

As with any MRI derivative, all pipeline derivatives have been included. This means that products were included regardless of their quality, and so some products may have been generated from images that are known to have poor quality—rated “red”, or incomparable. For details on the ratings and how to exclude them, see Appendix A. Additionally, extensive QC has not yet been performed on the derivatives themselves, and so there may be cases where pipelines produced atypical outputs. For an overview of planned checks, see Confluence.

4.4.3 Citations

If you use these results, please cite the MRIQC report (Esteban et al., 2017) and all relevant citations of the pipeline configuration.

Esteban, O., Birman, D., Schaer, M., Koyejo, O. O., Poldrack, R. A., & Gorgolewski, K. J. (2017). MRIQC: Advancing the automatic prediction of image quality in MRI from unseen sites. PloS One, 12(9), e0184661. https://doi.org/10.1371/journal.pone.0184661

In publications or presentations including data from A2CPS, please include the following statement as attribution:

Data were provided [in part] by the A2CPS Consortium funded by the National Institutes of Health (NIH) Common Fund, which is managed by the Office of the Director (OD)/ Office of Strategic Coordination (OSC). Consortium components and their associated funding sources include Clinical Coordinating Center (U24NS112873), Data Integration and Resource Center (U54DA049110), Omics Data Generation Centers (U54DA049116, U54DA049115, U54DA049113), Multi-site Clinical Center 1 (MCC1) (UM1NS112874), and Multi-site Clinical Center 2 (MCC2) (UM1NS118922).

Note

The following published papers should be cited when referring to A2CPS Protocol and Biomarkers: Sluka et al. (2023) Berardi et al. (2022)

Berardi, G., Frey-Law, L., Sluka, K. A., Bayman, E. O., Coffey, C. S., Ecklund, D., Vance, C. G. T., Dailey, D. L., Burns, J., Buvanendran, A., McCarthy, R. J., Jacobs, J., Zhou, X. J., Wixson, R., Balach, T., Brummett, C. M., Clauw, D., Colquhoun, D., Harte, S. E., … Wandner, L. D. (2022). Multi-site observational study to assess biomarkers for susceptibility or resilience to chronic pain: The acute to chronic pain signatures (A2CPS) study protocol. Frontiers in Medicine, 9. https://doi.org/10.3389/fmed.2022.849214
Sluka, K. A., Wager, T. D., Sutherland, S. P., Labosky, P. A., Balach, T., Bayman, E. O., Berardi, G., Brummett, C. M., Burns, J., Buvanendran, A., et al. (2023). Predicting chronic postsurgical pain: Current evidence and a novel program to develop predictive biomarker signatures. Pain, 164(9), 1912–1926. https://doi.org/10.1097/j.pain.0000000000002938
Sadil, P., Arfanakis, K., Bhuiyan, E. H., Caffo, B., Calhoun, V. D., Clauw, D. J., DeLano, M. C., Ford, J. C., Gattu, R., Guo, X., Harris, R. E., Ichesco, E., Johnson, M. A., Jung, H., Kahn, A. B., Kaplan, C. M., Leloudas, N., Lindquist, M. A., Luo, Q., … Chronic Pain Signatures Consortium, T. A. to. (2024). Image processing in the acute to chronic pain signatures (A2CPS) project. bioRxiv. https://doi.org/10.1101/2024.12.19.627509

When using neuroimaging derivatives, please also cite Sadil et al. (2024).